/* ============================================================
   ACON PROPERTIES — LUXURY DUBAI REAL ESTATE
   Complete Design System & Stylesheet
   ============================================================ */

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

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --c-burgundy:        #6E1D25;
  --c-burgundy-light:  #8B2530;
  --c-burgundy-dark:   #4A1119;
  --c-burgundy-muted:  rgba(110, 29, 37, 0.15);
  --c-graphite:        #4A4C4B;
  --c-graphite-light:  #6B6D6C;
  --c-gold:            #C9AD33;
  --c-gold-light:      #D4BB4A;
  --c-gold-dark:       #A89020;
  --c-gold-muted:      rgba(201, 173, 51, 0.12);
  --c-gold-border:     rgba(201, 173, 51, 0.3);

  /* Dark Theme Surfaces */
  --c-bg:              #070707;
  --c-bg-2:            #0C0C0C;
  --c-surface:         #101010;
  --c-surface-2:       #151515;
  --c-surface-3:       #1C1C1C;
  --c-surface-glass:   rgba(16, 16, 16, 0.85);
  --c-border:          rgba(255, 255, 255, 0.07);
  --c-border-2:        rgba(255, 255, 255, 0.12);

  /* Text Hierarchy */
  --c-text:            #F2EFE9;
  --c-text-secondary:  #9A9A9A;
  --c-text-muted:      #5C5C5C;
  --c-text-gold:       #C9AD33;

  /* Typography */
  --f-display:  'Cormorant Garamond', 'Playfair Display', serif;
  --f-serif:    'Playfair Display', serif;
  --f-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-num:      'Playfair Display', 'Cormorant Garamond', Georgia, serif;

  /* Fluid Type Scale */
  --fs-xs:   clamp(0.7rem, 1vw, 0.75rem);
  --fs-sm:   clamp(0.8rem, 1.2vw, 0.875rem);
  --fs-base: clamp(0.9rem, 1.5vw, 1rem);
  --fs-md:   clamp(1rem, 1.8vw, 1.125rem);
  --fs-lg:   clamp(1.1rem, 2vw, 1.25rem);
  --fs-xl:   clamp(1.3rem, 2.5vw, 1.5rem);
  --fs-2xl:  clamp(1.6rem, 3vw, 2rem);
  --fs-3xl:  clamp(2rem, 4vw, 2.75rem);
  --fs-4xl:  clamp(2.5rem, 5vw, 3.75rem);
  --fs-5xl:  clamp(3rem, 7vw, 5.5rem);
  --fs-hero: clamp(3.5rem, 9vw, 8rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-40: 10rem;

  /* Border Radius */
  --r-xs:  2px;
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  20px;
  --r-2xl: 32px;

  /* Shadows */
  --sh-sm:     0 2px 8px rgba(0, 0, 0, 0.5);
  --sh-md:     0 8px 24px rgba(0, 0, 0, 0.6);
  --sh-lg:     0 20px 60px rgba(0, 0, 0, 0.7);
  --sh-xl:     0 40px 100px rgba(0, 0, 0, 0.8);
  --sh-gold:   0 8px 40px rgba(201, 173, 51, 0.2);
  --sh-card:   0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 60px rgba(0, 0, 0, 0.5);

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Timing */
  --t-fast:   180ms;
  --t-base:   360ms;
  --t-slow:   600ms;
  --t-xl:     1000ms;

  /* Layout */
  --container: 1400px;
  --container-narrow: 1000px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --navbar-h: 80px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* Selection */
::selection {
  background: var(--c-gold-muted);
  color: var(--c-gold);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--c-graphite);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold-dark);
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.section--large {
  padding-block: clamp(5rem, 10vw, 11rem);
}

/* Uniform anchor landing offset for every in-page jump target
   (#floorplans, #paymentplan, #brochure …) across all pages */
section[id],
[id][class*="-fp"],
[id][class*="-pay"],
[id][class*="-broch"] {
  scroll-margin-top: var(--navbar-h);
}

/* ============================================================
   4. TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--f-display);
  font-size: var(--fs-4xl);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.section-title em {
  font-style: italic;
  color: var(--c-gold);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-header--row {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

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

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.55rem 1.3rem;
  border-radius: var(--r-sm);
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t-base) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease-out);
}

.btn:hover::before {
  left: 150%;
}

.btn--primary {
  background: linear-gradient(150deg, var(--c-burgundy) 0%, #5A1220 100%);
  color: var(--c-text);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 14px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.09);
}

.btn--primary:hover {
  background: linear-gradient(150deg, var(--c-burgundy-light) 0%, var(--c-burgundy) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,173,51,0.18);
}

.btn--gold {
  background: linear-gradient(135deg, #C9AD33 0%, #E2CC50 50%, #C9AD33 100%);
  color: #0A0A0A;
  border: 1px solid rgba(201,173,51,0.5);
  box-shadow: 0 2px 12px rgba(201,173,51,0.22), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #D4BC44 0%, #EDD85A 50%, #D4BC44 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,173,51,0.38);
  color: #000;
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(201,173,51,0.05);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid var(--c-gold-border);
  padding: 0.5rem 1.2rem;
}

.btn--ghost:hover {
  background: var(--c-gold-muted);
  border-color: var(--c-gold);
}

/* Navbar "Book Consultation" — solid gold */
.navbar__actions .btn--ghost {
  background: linear-gradient(135deg, #C9AD33 0%, #D9BE40 100%);
  color: #0A0A0A;
  border: 1px solid rgba(201,173,51,0.45);
  box-shadow: 0 2px 10px rgba(201,173,51,0.18), inset 0 1px 0 rgba(255,255,255,0.3);
  font-weight: 700;
  padding: 0.5rem 1.2rem;
}

.navbar__actions .btn--ghost:hover {
  background: linear-gradient(135deg, #D4BC44 0%, #EDD058 100%);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(201,173,51,0.32);
}

.btn--lg {
  padding: 0.75rem 1.75rem;
  font-size: var(--fs-base);
  letter-spacing: 0.12em;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border-2);
  color: var(--c-text-secondary);
  transition: all var(--t-base) var(--ease-out);
}

.btn-icon:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-muted);
}

/* Arrow button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  transition: gap var(--t-base) var(--ease-out);
}

.btn-arrow:hover {
  gap: var(--sp-5);
}

/* ============================================================
   6. PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-text);
}

.loader-line {
  width: 200px;
  height: 1px;
  background: var(--c-border-2);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold);
  transform: translateX(-100%);
  animation: loaderLine 1.8s var(--ease-luxury) forwards;
}

@keyframes loaderLine {
  to { transform: translateX(0); }
}

/* ============================================================
   6b. ACON LOGO TILE COMPONENT
   Faithful CSS recreation of the brand mark:
   alternating burgundy/graphite letter tiles + gold banner
   ============================================================ */
.acon-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.acon-logo__tiles {
  display: flex;
  gap: 2.5px;
}

.acon-logo__tile {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  /* Slight inner shadow to match the logo depth */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.25);
}

.acon-logo__tile--a,
.acon-logo__tile--o {
  background: var(--c-burgundy);
}

.acon-logo__tile--c,
.acon-logo__tile--n {
  background: var(--c-graphite);
}

.acon-logo__banner {
  background: linear-gradient(
    to right,
    #A08A20 0%,
    #C9AD33 25%,
    #D4BB4A 50%,
    #C9AD33 75%,
    #A08A20 100%
  );
  padding: 2px 4px;
  border-radius: 2px;
  text-align: center;
}

.acon-logo__banner span {
  font-family: var(--f-sans);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1200;
  display: block;
}

/* Size variants */
.acon-logo--sm .acon-logo__tile  { width: 20px; height: 20px; font-size: 0.82rem; }
.acon-logo--sm .acon-logo__tiles { gap: 2px; }
.acon-logo--sm .acon-logo__banner span { font-size: 0.38rem; letter-spacing: 0.18em; }

.acon-logo--lg .acon-logo__tile  { width: 44px; height: 44px; font-size: 1.8rem; border-radius: 5px; }
.acon-logo--lg .acon-logo__tiles { gap: 4px; }
.acon-logo--lg .acon-logo__banner { padding: 4px 6px; }
.acon-logo--lg .acon-logo__banner span { font-size: 0.7rem; letter-spacing: 0.28em; }

/* Footer variant — slightly bigger with more breathing room */
.acon-logo--footer .acon-logo__tile  { width: 30px; height: 30px; font-size: 1.2rem; border-radius: 4px; }
.acon-logo--footer .acon-logo__tiles { gap: 3px; }
.acon-logo--footer .acon-logo__banner span { font-size: 0.52rem; letter-spacing: 0.22em; }

/* Loader variant */
.acon-logo--loader .acon-logo__tile {
  width: 54px;
  height: 54px;
  font-size: 2.2rem;
  border-radius: 8px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0,0,0,0.3);
}
.acon-logo--loader .acon-logo__tiles { gap: 6px; }
.acon-logo--loader .acon-logo__banner { padding: 5px 8px; border-radius: 4px; }
.acon-logo--loader .acon-logo__banner span { font-size: 0.78rem; letter-spacing: 0.3em; }

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: background var(--t-slow) var(--ease-out),
              box-shadow var(--t-slow) var(--ease-out),
              backdrop-filter var(--t-slow) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border), 0 8px 40px rgba(0,0,0,0.5);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--c-border);
}

/* Navbar: hamburger (mobile only) */
.navbar__menu-btn {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  border: none;
  padding: var(--sp-2);
  cursor: pointer;
  color: rgba(242, 239, 233, 0.7);
  transition: color var(--t-fast);
}

.navbar__menu-btn:hover {
  color: var(--c-text);
}

.navbar__menu-btn svg {
  flex-shrink: 0;
}

/* Hamburger → X animation */
.navbar__menu-btn .icon-close { display: none; }
.navbar__menu-btn.active .icon-open  { display: none; }
.navbar__menu-btn.active .icon-close { display: block; }

/* Center nav links */
.navbar__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Project pages back button — lives inside navbar__inner */
.proj-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: var(--c-gold);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--c-gold-border);
  border-radius: 100px;
  padding: 0.38rem 0.9rem 0.38rem 0.7rem;
  background: var(--c-gold-muted);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.proj-back:hover {
  background: rgba(201,173,51,0.18);
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}
.proj-back svg { flex-shrink: 0; }

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(242, 239, 233, 0.65);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--c-text);
}

/* Navbar: right actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  justify-self: end;
}

/* Find a Property link */
.navbar__find {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(242, 239, 233, 0.7);
  transition: color var(--t-fast);
  white-space: nowrap;
}

.navbar__find:hover {
  color: var(--c-text);
}

/* Keep dropdown infrastructure for potential future use */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(242, 239, 233, 0.8);
  transition: color var(--t-fast);
  border-radius: var(--r-md);
}

.nav-link:hover {
  color: var(--c-text);
}

/* Mega Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + var(--sp-3));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-base) var(--ease-out);
  min-width: 500px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown__inner {
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-xl);
}

.dropdown__title {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
}

.dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}

.dropdown__link:hover {
  background: rgba(255,255,255,0.04);
}

.dropdown__link-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--c-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

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

.dropdown__link-title {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
}

.dropdown__link-desc {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: 1px;
}

/* Navbar Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.navbar__lang {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-text-secondary);
  cursor: pointer;
  transition: color var(--t-fast);
  text-transform: uppercase;
}

.navbar__lang:hover {
  color: var(--c-gold);
}

/* Legacy toggle — hidden, replaced by navbar__menu-btn */
.navbar__toggle { display: none; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  padding: calc(var(--navbar-h) + var(--sp-8)) var(--pad) var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.mobile-menu__link {
  display: block;
  padding: var(--sp-5) 0;
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-base);
}

.mobile-menu__link:hover {
  color: var(--c-gold);
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: var(--sp-8);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video slider slides */
.hero__video-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}

.hero__video-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero__video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* Burgundy sweep from bottom-left — anchors the text area */
    linear-gradient(
      to top right,
      rgba(110, 29, 37, 0.92) 0%,
      rgba(110, 29, 37, 0.52) 32%,
      rgba(74, 17, 25, 0.12) 58%,
      transparent 72%
    ),
    /* Dark veil from left edge — keeps text crisp at all screen sizes */
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.32) 45%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.hero__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--c-bg) 0%, transparent 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--navbar-h);
  padding-inline: var(--pad);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.hero__title {
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 780px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--c-gold);
  display: block;
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-top: var(--sp-6);
  line-height: 1.75;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(14rem, 20vw, 18rem);
  left: var(--pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-gold);
  animation: scrollLine 2s infinite var(--ease-in-out);
}

@keyframes scrollLine {
  to { top: 200%; }
}

.hero__scroll-text {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============================================================
   9. SEARCH BAR
   ============================================================ */
.search-bar {
  position: absolute;
  bottom: var(--sp-16);
  left: 0;
  right: 0;
  z-index: 3;
  padding-inline: var(--pad);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
}

.search-bar__inner {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-2);
  display: flex;
  align-items: stretch;
  gap: var(--sp-1);
  box-shadow: 0 2px 0 rgba(255,255,255,0.04) inset, var(--sh-lg);
}

.search-field {
  flex: 1;
  min-width: 0;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  border-right: 1px solid var(--c-border);
  cursor: pointer;
  border-radius: var(--r-lg);
  transition: background var(--t-fast);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field:hover {
  background: rgba(255,255,255,0.04);
}

.search-field__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.search-field__input,
.search-field__select {
  background: none;
  border: none;
  outline: none;
  color: var(--c-text);
  font-size: var(--fs-sm);
  font-weight: 400;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.search-field__select option {
  background: #111;
  color: var(--c-text);
}

.search-field__select {
  appearance: none;
  -webkit-appearance: none;
}

.search-field__input::placeholder {
  color: var(--c-text-muted);
}

.search-btn {
  background: linear-gradient(150deg, var(--c-burgundy) 0%, #5A1220 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 0.55rem 1.3rem;
  color: var(--c-text);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

.search-btn:hover {
  background: linear-gradient(150deg, var(--c-burgundy-light) 0%, var(--c-burgundy) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,173,51,0.15);
}

/* ============================================================
   10. STATS SECTION
   ============================================================ */
.stats {
  padding-block: clamp(3rem, 6vw, 6rem);
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.stat-card {
  text-align: center;
  padding: var(--sp-8);
  border-right: 1px solid var(--c-border);
  position: relative;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--t-slow) var(--ease-out);
}

.stat-card.visible::before {
  width: 40px;
}

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--c-text);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number .suffix {
  font-size: 0.45em;
  color: var(--c-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.stat-label {
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ============================================================
   11. PROPERTY CARD
   ============================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.property-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-slow) var(--ease-out),
              border-color var(--t-slow) var(--ease-out),
              box-shadow var(--t-slow) var(--ease-out);
  cursor: pointer;
  position: relative;
}

.property-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-gold-border);
  box-shadow: var(--sh-card), var(--sh-gold);
}

.property-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-xl) var(--ease-luxury);
}

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

.property-card__badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--c-burgundy);
  color: var(--c-text);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
  z-index: 1;
}

.property-card__badge--new {
  background: var(--c-gold);
  color: #080808;
}

.property-card__fav {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: all var(--t-base);
  border: 1px solid rgba(255,255,255,0.1);
}

.property-card__fav:hover {
  background: var(--c-burgundy);
  border-color: var(--c-burgundy);
}

.property-card__content {
  padding: var(--sp-6);
}

.property-card__price {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}

.property-card__title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  line-height: 1.35;
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  margin-bottom: var(--sp-5);
}

.property-card__specs {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
}

.spec-item svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

/* ============================================================
   11b. EXCLUSIVE FEATURED SECTION
   ============================================================ */
.exclusive-featured {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}

.exclusive-featured__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* Left editorial column */
.exclusive-featured__editorial {
  padding-right: clamp(1rem, 2vw, 2rem);
}


.exclusive-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  background: var(--c-text);
  color: var(--c-bg);
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), color var(--t-base);
}

.exclusive-featured__cta:hover {
  background: var(--c-gold);
  color: #0A0A0A;
  transform: translateY(-2px);
}

/* Right slider column */
.exclusive-featured__slider-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-width: 0;
}

.excl-slider {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.excl-track {
  display: flex;
  gap: var(--sp-5);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Navigation arrows */
.excl-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-surface-3);
  border: 1px solid var(--c-border-2);
  color: var(--c-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}

.excl-nav:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #0A0A0A;
  box-shadow: var(--sh-gold);
}

.excl-nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Cards */
.excl-card {
  flex: 0 0 calc(50% - var(--sp-3));
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-slow) var(--ease-out),
              border-color var(--t-slow) var(--ease-out),
              box-shadow var(--t-slow) var(--ease-out);
  box-shadow: var(--sh-card);
}

.excl-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-gold-border);
  box-shadow: var(--sh-card), var(--sh-gold);
}

.excl-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.excl-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-xl) var(--ease-luxury);
}

.excl-card:hover .excl-card__image img {
  transform: scale(1.06);
}

.excl-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: rgba(16,16,16,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}

.excl-card__body {
  padding: var(--sp-5) var(--sp-6);
}

.excl-card__price {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}

.excl-card__title {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-secondary);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.excl-card__location {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}

.excl-card__location svg {
  flex-shrink: 0;
  color: var(--c-text-muted);
}

.excl-card__specs {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

.excl-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  font-weight: 500;
}

.excl-spec svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

.excl-spec-sep {
  color: var(--c-text-muted);
  font-weight: 300;
  user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
  .exclusive-featured__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .exclusive-featured__editorial {
    padding-right: 0;
    text-align: center;
  }
  .exclusive-featured__headline {
    align-items: center;
  }
  .exclusive-featured__byline {
    padding-left: 0;
  }
  .excl-card {
    flex: 0 0 80%;
  }
}

@media (max-width: 480px) {
  .excl-card {
    flex: 0 0 90%;
  }
}

/* ============================================================
   12. COMMUNITIES SECTION
   ============================================================ */
.communities__scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.communities__scroll:active {
  cursor: grabbing;
}

.communities__scroll::-webkit-scrollbar {
  display: none;
}

.communities__track {
  display: flex;
  gap: var(--sp-5);
  padding-bottom: var(--sp-4);
  width: max-content;
}

.community-card {
  position: relative;
  width: clamp(260px, 30vw, 360px);
  height: clamp(320px, 40vw, 460px);
  flex-shrink: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
}

.community-card__image {
  position: absolute;
  inset: 0;
}

.community-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-xl) var(--ease-luxury);
}

.community-card:hover .community-card__image img {
  transform: scale(1.1);
}

.community-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%
  );
  transition: background var(--t-slow);
}

.community-card:hover .community-card__overlay {
  background: linear-gradient(
    to top,
    rgba(110,29,37,0.85) 0%,
    rgba(0,0,0,0.3) 60%,
    transparent 100%
  );
}

.community-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
}

.community-card__count {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}

.community-card__name {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.2;
}

.community-card__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-4);
  transition: all var(--t-base) var(--ease-out);
  transform: translateY(10px);
  opacity: 0;
}

.community-card:hover .community-card__arrow {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* ============================================================
   13. DEVELOPER LOGOS
   ============================================================ */
.developers {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: var(--c-surface);
  overflow: hidden;
}

.developers__label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-8);
}

.developers__track {
  display: flex;
  gap: var(--sp-16);
  animation: ticker 30s linear infinite;
  width: max-content;
}

.developers__track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.developer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 var(--sp-6);
  flex-shrink: 0;
  transition: opacity var(--t-base);
}

.developer-logo:hover {
  opacity: 1 !important;
}

.developer-logo span {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,239,233,0.35);
  transition: color var(--t-base);
  white-space: nowrap;
}

.developer-logo:hover span {
  color: var(--c-gold);
}

.developer-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity var(--t-base);
}

.developer-logo img[alt="Aldar"],
.developer-logo img[alt="Ellington Properties"],
.developer-logo img[alt="Binghatti"],
.developer-logo img[alt="Nakheel"],
.developer-logo img[alt="Meraas"] {
  height: 64px;
  max-width: 260px;
}

.developer-logo img[alt="Omniyat"],
.developer-logo img[alt="Danube Properties"],
.developer-logo img[alt="Dubai Holding"] {
  height: 100px;
  max-width: 300px;
}

.developer-logo:hover img {
  opacity: 0.9;
}

/* ============================================================
   13b. OUR PROCESS
   ============================================================ */
.process-section {
  background: var(--c-bg);
}

.process-header {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--sp-8) var(--sp-6) var(--sp-8) 0;
  position: relative;
}

.process-step__number {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-5);
  opacity: 0.9;
}

.process-step__connector {
  position: absolute;
  top: calc(var(--sp-8) + 1.5rem);
  right: 0;
  width: calc(100% - 3.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--c-gold-border), transparent);
}

.process-step__title {
  font-family: var(--f-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.01em;
}

.process-step__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: 1.7;
  max-width: 22ch;
}

.process-step::before {
  content: '';
  position: absolute;
  top: calc(var(--sp-8) + 1.25rem);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 12px var(--c-gold);
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8) var(--sp-6);
  }
  .process-step__connector {
    display: none;
  }
}

@media (max-width: 560px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-left: 1px solid var(--c-gold-border);
    padding-left: var(--sp-6);
  }
  .process-step::before {
    left: -4px;
  }
}

/* ============================================================
   14. WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image__badge {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  background: rgba(7,7,7,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
}

.why-image__badge-number {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--c-gold);
  line-height: 1;
}

.why-image__badge-text {
  font-size: var(--fs-xs);
  color: var(--c-text-secondary);
  letter-spacing: 0.1em;
  margin-top: var(--sp-2);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
}

.why-feature {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  transition: all var(--t-base) var(--ease-out);
}

.why-feature:hover {
  background: var(--c-surface);
  border-color: var(--c-border);
}

.why-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--c-gold-muted);
  border: 1px solid var(--c-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.why-feature__text h4 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.why-feature__text p {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: 1.65;
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  padding-bottom: calc(var(--sp-8) + 96px);
  position: relative;
  transition: all var(--t-slow) var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--c-gold-border);
  transform: translateY(-4px);
  box-shadow: var(--sh-gold);
}

.testimonial-card__quote {
  font-family: var(--f-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--c-gold);
  opacity: 0.3;
  margin-bottom: var(--sp-4);
  user-select: none;
}

.testimonial-card__stars {
  display: flex;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}

.star {
  color: var(--c-gold);
  font-size: 0.85rem;
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

.testimonial-card__body {}

.testimonial-card__author {
  position: absolute;
  bottom: var(--sp-8);
  left: var(--sp-8);
  right: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--c-gold-border);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-burgundy);
  color: var(--c-gold);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.testimonial-card__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
}

.testimonial-card__origin {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: 2px;
}

/* ============================================================
   16. CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.cta-section__content .section-title {
  font-size: var(--fs-4xl);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}

.cta-section__content .section-subtitle {
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.footer__main {
  padding-block: clamp(3rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}

.footer__brand-name {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.footer__brand-sub {
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-6);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--c-border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  transition: all var(--t-base);
}

.footer__social a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-muted);
}

.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--c-gold);
}

.footer__bottom {
  padding-block: var(--sp-6);
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.footer__legal a:hover {
  color: var(--c-gold);
}

/* ============================================================
   18. FLOATING BUTTONS
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 800;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all var(--t-base) var(--ease-spring);
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.back-top {
  position: fixed;
  bottom: var(--sp-8);
  left: var(--sp-8);
  z-index: 800;
  width: 48px;
  height: 48px;
  background: var(--c-surface-3);
  border: 1px solid var(--c-border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--t-base) var(--ease-out);
  color: var(--c-text-secondary);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--c-gold-muted);
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* ============================================================
   19. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================================
   Scroll-driven animation classes
   — smoother, bidirectional (reveals scrolling up & down),
     refined easing + subtle blur for a premium reveal
   ============================================================ */
:root {
  --anim-dur:  780ms;
  --anim-ease: cubic-bezier(0.22, 1, 0.36, 1); /* refined ease-out */
}

[data-animate] {
  opacity: 0;
  transition: opacity var(--anim-dur) var(--anim-ease),
              transform var(--anim-dur) var(--anim-ease);
}

[data-animate="fade-up"]    { transform: translateY(44px) scale(0.994); }
[data-animate="fade-down"]  { transform: translateY(-44px) scale(0.994); }
[data-animate="fade-in"]    { transform: scale(0.994); }
[data-animate="fade-left"]  { transform: translateX(-44px); }
[data-animate="fade-right"] { transform: translateX(44px); }
[data-animate="scale-in"]   { transform: scale(0.93); }

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* Stagger delays (apply on the way in; instant cascade out) */
[data-delay="100"] { transition-delay: 90ms; }
[data-delay="200"] { transition-delay: 170ms; }
[data-delay="300"] { transition-delay: 250ms; }
[data-delay="400"] { transition-delay: 330ms; }
[data-delay="500"] { transition-delay: 410ms; }
[data-delay="600"] { transition-delay: 490ms; }
[data-delay="700"] { transition-delay: 570ms; }
[data-delay="800"] { transition-delay: 650ms; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Luxury numerals — high-contrast didone figures for every
   price, stat, percentage & spec value across all pages
   ============================================================ */
html :is(
  [class*="facts__value"],
  [class*="pay__pct"],
  [class*="__price"],
  [class*="fp__spec-val"],
  [class*="overview__stat-val"],
  .stat-number
) {
  font-family: var(--f-num);
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.006em;
}

/* ============================================================
   Consistent section-intro rhythm (eyebrow → title → subtitle).
   Defaults only apply where a page hasn't set an inline margin,
   keeping repeated sections visually uniform.
   ============================================================ */
.eyebrow + .section-title,
.eyebrow + h2 { margin-top: var(--sp-4); }
.section-title + .section-subtitle { margin-top: var(--sp-5); }

/* ============================================================
   20. PROPERTIES LISTING PAGE
   ============================================================ */
.listing-hero {
  padding-top: calc(var(--navbar-h) + var(--sp-12));
  padding-bottom: var(--sp-12);
  background: linear-gradient(to bottom, var(--c-surface) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-border);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  flex-wrap: wrap;
}

.filter-select {
  appearance: none;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-2);
  color: var(--c-text);
  padding: var(--sp-3) var(--sp-8) var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--t-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--c-gold-border);
}

.filter-select option {
  background: #111;
}

.filter-divider {
  width: 1px;
  height: 24px;
  background: var(--c-border);
  flex-shrink: 0;
}

.filter-count {
  margin-left: auto;
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.load-more-wrapper {
  text-align: center;
  margin-top: var(--sp-12);
}

/* ============================================================
   21. PROPERTY DETAIL PAGE
   ============================================================ */
.detail-hero {
  padding-top: var(--navbar-h);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: var(--sp-2);
  height: 580px;
}

.gallery-main {
  grid-row: 1 / -1;
  overflow: hidden;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  position: relative;
  cursor: pointer;
}

.gallery-main img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.gallery-main:hover img { transform: scale(1.04); }

.gallery-thumb {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-thumb:first-of-type {
  border-radius: 0 var(--r-lg) 0 0;
}

.gallery-thumb:last-of-type {
  border-radius: 0 0 var(--r-lg) 0;
}

.gallery-thumb:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-text);
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery-thumb:hover .gallery-overlay,
.gallery-main:hover .gallery-overlay {
  opacity: 1;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-10);
  align-items: start;
  margin-top: var(--sp-10);
}

.detail-main {}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
  margin-block: var(--sp-5);
}

.property-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
}

.property-meta-item svg {
  color: var(--c-gold);
}

.detail-section {
  margin-top: var(--sp-10);
  padding-top: var(--sp-10);
  border-top: 1px solid var(--c-border);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
}

.amenity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

/* Sticky Inquiry Form */
.inquiry-form {
  position: sticky;
  top: calc(var(--navbar-h) + var(--sp-6));
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.inquiry-form__header {
  padding: var(--sp-6) var(--sp-8);
  background: var(--c-burgundy);
  text-align: center;
}

.inquiry-form__header h3 {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 500;
}

.inquiry-form__price {
  font-size: var(--fs-xs);
  opacity: 0.8;
  margin-top: var(--sp-1);
  letter-spacing: 0.1em;
}

.inquiry-form__body {
  padding: var(--sp-6) var(--sp-8);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
}

.form-input {
  width: 100%;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  color: var(--c-text);
  font-size: var(--fs-sm);
  transition: border-color var(--t-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--c-gold-border);
}

.form-input::placeholder {
  color: var(--c-text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.roi-card {
  background: var(--c-gold-muted);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-top: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.roi-item {}

.roi-item__label {
  font-size: var(--fs-xs);
  color: var(--c-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.roi-item__value {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-text);
  margin-top: var(--sp-1);
}

/* Mortgage Calculator */
.calculator {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  margin-top: var(--sp-6);
}

.calculator__result {
  text-align: center;
  padding: var(--sp-6);
  background: var(--c-surface-3);
  border-radius: var(--r-lg);
  margin-top: var(--sp-6);
}

.calculator__monthly {
  font-family: var(--f-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  color: var(--c-gold);
  line-height: 1;
}

.calculator__per-month {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
}

/* Range input */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--c-border-2);
  border-radius: 1px;
  outline: none;
  margin-block: var(--sp-2);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-gold);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(201,173,51,0.4);
  transition: all var(--t-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ============================================================
   22. ABOUT PAGE
   ============================================================ */
.about-hero {
  padding-top: calc(var(--navbar-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.about-hero__content {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image__accent {
  position: absolute;
  top: -var(--sp-4);
  right: -var(--sp-4);
  width: 200px;
  height: 200px;
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-xl);
  z-index: -1;
  top: -16px;
  right: -16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-10);
}

.timeline-item {
  display: flex;
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--c-border);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-gold-muted);
  border: 1px solid var(--c-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-gold);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content h4 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-3);
}

.timeline-content p {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.team-card {
  text-align: center;
}

.team-card__photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-5);
  position: relative;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.05);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(110,29,37,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__name {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
}

.team-card__role {
  font-size: var(--fs-xs);
  color: var(--c-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--sp-1);
  font-weight: 600;
}

/* ============================================================
   23. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  margin-bottom: var(--sp-8);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--c-gold-muted);
  border: 1px solid var(--c-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-1);
}

.contact-info__value {
  font-size: var(--fs-md);
  color: var(--c-text);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
}

.map-embed {
  width: 100%;
  height: 400px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: var(--sp-10);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg);
  opacity: 0.85;
}

.whatsapp-cta {
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-top: var(--sp-6);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
}

.whatsapp-cta:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #1F2F1F 0%, #0D0D0D 100%);
  transform: translateY(-2px);
}

.whatsapp-cta__icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-cta__title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
}

.whatsapp-cta__sub {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  margin-top: var(--sp-1);
}

/* ============================================================
   24. RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-right: 1px solid var(--c-border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .navbar__links { display: none; }
  .navbar__menu-btn { display: flex; }
  .navbar__actions .btn { display: none; }
  .navbar__find { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }

  .inquiry-form {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 160px 160px;
    height: auto;
  }

  .gallery-main {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-h: 68px;
  }

  .properties-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-bar {
    position: relative;
    bottom: auto;
    margin-top: var(--sp-8);
  }

  .search-bar__inner {
    flex-direction: column;
    gap: var(--sp-2);
    padding: var(--sp-5);
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: var(--sp-4);
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .hero__title {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero__content {
    padding-bottom: var(--sp-8);
  }

  .dropdown { display: none; }

  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-main,
  .gallery-thumb {
    height: 240px;
    border-radius: var(--r-md) !important;
  }

  .contact-form-wrap {
    padding: var(--sp-6);
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-divider { display: none; }

  .filter-count {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-card { padding: var(--sp-6); }

  .property-card__content { padding: var(--sp-5); }

  .roi-card { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }

  .amenities-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEW PROPERTIES IN DUBAI SECTION
   ============================================================ */

.new-properties { background: var(--c-bg-2); }

.new-properties__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.new-properties__head .section-title { margin-bottom: 0; }

/* Type tabs: Off-Plan / Resale / Rental */
.new-properties__type-tabs {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.np-type-tab {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--c-border-2);
  background: transparent;
  color: var(--c-text-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.np-type-tab:hover {
  color: var(--c-text);
  border-color: var(--c-border-2);
  background: var(--c-surface-3);
}

.np-type-tab--active {
  background: var(--c-graphite);
  color: #fff;
  border-color: var(--c-graphite);
}

/* Panel visibility */
.np-panel { display: none; }
.np-panel--active { display: block; }

/* Property sub-tabs */
.np-subtabs {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid var(--c-border);
  margin-bottom: var(--sp-8);
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.np-subtab {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-secondary);
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.np-subtab:hover { color: var(--c-text); }

.np-subtab--active {
  color: var(--c-text);
  border-bottom-color: var(--c-gold);
  background: var(--c-surface);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}

/* Detail layout: carousel + highlights */
.np-detail {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-8);
  align-items: stretch;
}

/* Carousel */
.np-carousel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-surface);
  height: 420px;
}

.np-carousel__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.np-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}

.np-carousel__slide--active { opacity: 1; z-index: 1; }

.np-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(7,7,7,0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.np-carousel__btn:hover { background: rgba(7,7,7,0.9); }
.np-carousel__btn--prev { left: var(--sp-4); }
.np-carousel__btn--next { right: var(--sp-4); }

.np-carousel__dots {
  position: absolute;
  bottom: var(--sp-16);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}

.np-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.np-carousel__dot--active {
  background: #fff;
  transform: scale(1.3);
}

/* Property meta overlay */
.np-prop-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  background: linear-gradient(to top, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.6) 60%, transparent 100%);
}

.np-prop-name {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: #fff;
  margin: 0 0 var(--sp-1);
}

.np-prop-type {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  margin: 0 0 var(--sp-3);
}

.np-prop-price {
  font-family: var(--f-sans);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-gold);
  margin: 0 0 var(--sp-5);
}

.np-register-btn {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  padding: 0.48rem 1.2rem;
}

/* Highlights panel */
.np-highlights {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}

.np-highlights__title {
  font-family: var(--f-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 var(--sp-5);
}

.np-highlights__list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  flex: 1;
}

.np-highlights__list--active { display: flex; }

.np-highlights__list li {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: 1.6;
  padding-left: var(--sp-5);
  position: relative;
}

.np-highlights__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

.np-highlights__actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}

.np-action-btn {
  flex: 1;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9rem var(--sp-5);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-md);
  background: var(--c-gold-muted);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}

.np-action-btn svg {
  width: 16px;
  height: 16px;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: color var(--t-base) var(--ease-out);
}

.np-action-btn:hover {
  background: var(--c-gold);
  color: #0A0A0A;
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 173, 51, 0.18);
}

.np-action-btn:hover svg { color: #0A0A0A; }

/* Responsive */
@media (max-width: 1024px) {
  .np-detail { grid-template-columns: 1fr; }
  .np-carousel { height: 340px; }
  .np-highlights { min-height: unset; }
}

@media (max-width: 640px) {
  .new-properties__head { flex-direction: column; align-items: flex-start; }
  .np-subtab { padding: 0.65rem 1rem; font-size: var(--fs-xs); }
  .np-carousel { height: 280px; }
  .np-prop-meta { padding: var(--sp-5); }
}

/* ============================================================
   LIGHT MODE
   ============================================================ */

/* Light-mode design tokens */
[data-theme="light"] {
  --c-bg:             #F8F5EF;
  --c-bg-2:           #F2EDE4;
  --c-surface:        #EDE7DB;
  --c-surface-2:      #E4DDD0;
  --c-surface-3:      #D8D0C0;
  --c-surface-glass:  rgba(248, 245, 239, 0.92);
  --c-border:         rgba(0, 0, 0, 0.08);
  --c-border-2:       rgba(0, 0, 0, 0.14);

  --c-text:           #18120C;
  --c-text-secondary: #5C4E3A;
  --c-text-muted:     #9A8E7A;
  --c-text-gold:      #A88B1E;
  --c-gold-border:    rgba(168, 139, 30, 0.35);
  --c-gold-muted:     rgba(168, 139, 30, 0.1);

  --sh-sm:   0 2px 8px rgba(0, 0, 0, 0.07);
  --sh-md:   0 8px 24px rgba(0, 0, 0, 0.1);
  --sh-lg:   0 20px 60px rgba(0, 0, 0, 0.12);
  --sh-xl:   0 40px 100px rgba(0, 0, 0, 0.15);
  --sh-gold: 0 8px 40px rgba(168, 139, 30, 0.2);
  --sh-card: 0 1px 0 rgba(255,255,255,0.75) inset, 0 4px 24px rgba(0, 0, 0, 0.07);
}

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--c-bg); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #C4B8A0; }
[data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: var(--c-gold-dark); }

/* Navbar — give a soft base so dark text is always readable */
[data-theme="light"] .navbar {
  background: rgba(248, 245, 239, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(248, 245, 239, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.08);
}

/* Hardcoded link color overrides for light mode */
[data-theme="light"] .navbar__link {
  color: rgba(24, 18, 12, 0.58);
}
[data-theme="light"] .navbar__link:hover,
[data-theme="light"] .navbar__link.active {
  color: #18120C;
}
[data-theme="light"] .navbar__find {
  color: rgba(24, 18, 12, 0.62);
}
[data-theme="light"] .navbar__find:hover { color: #18120C; }
[data-theme="light"] .navbar__menu-btn { color: rgba(24, 18, 12, 0.62); }
[data-theme="light"] .navbar__menu-btn:hover { color: #18120C; }

/* Dropdown */
[data-theme="light"] .dropdown__inner {
  background: rgba(248, 245, 239, 0.98);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
[data-theme="light"] .dropdown__link:hover { background: rgba(0,0,0,0.04); }

/* Search bar */
[data-theme="light"] .search-bar__inner {
  background: rgba(248, 245, 239, 0.96);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 0 rgba(255,255,255,0.6) inset, var(--sh-lg);
}
[data-theme="light"] .search-field:hover { background: rgba(0,0,0,0.04); }
[data-theme="light"] .search-field__select option,
[data-theme="light"] .filter-select option { background: #F2EDE4; color: #18120C; }

/* Buttons */
[data-theme="light"] .btn--outline {
  border-color: rgba(0, 0, 0, 0.22);
  color: #18120C;
}
[data-theme="light"] .btn--outline:hover {
  border-color: var(--c-gold-dark);
  color: var(--c-gold-dark);
  background: rgba(168, 139, 30, 0.07);
}
[data-theme="light"] .btn--ghost {
  color: #A88B1E;
  border-color: rgba(168, 139, 30, 0.4);
}
[data-theme="light"] .btn--ghost:hover {
  background: rgba(168, 139, 30, 0.1);
  border-color: #A88B1E;
}

/* Navbar solid CTA — stays gold in light mode */
[data-theme="light"] .navbar__actions .btn--ghost {
  background: linear-gradient(135deg, #B89A20 0%, #C9AD33 100%);
  color: #fff;
  border-color: rgba(168, 139, 30, 0.5);
  box-shadow: 0 2px 10px rgba(168,139,30,0.2), inset 0 1px 0 rgba(255,255,255,0.25);
}
[data-theme="light"] .navbar__actions .btn--ghost:hover {
  background: linear-gradient(135deg, #C9AD33 0%, #D4BB4A 100%);
  color: #0A0A0A;
  box-shadow: 0 5px 18px rgba(168,139,30,0.3);
}

/* Property card fav button */
[data-theme="light"] .property-card__fav {
  background: rgba(248, 245, 239, 0.88);
  border-color: rgba(0,0,0,0.1);
  color: #5C4E3A;
}

/* Exclusive card badge */
[data-theme="light"] .excl-card__badge {
  background: rgba(248, 245, 239, 0.92);
  border-color: rgba(0,0,0,0.1);
}

/* Why-image badge */
[data-theme="light"] .why-image__badge {
  background: rgba(248, 245, 239, 0.95);
}

/* Gallery overlay */
[data-theme="light"] .gallery-overlay {
  background: rgba(24, 18, 12, 0.52);
}

/* New-properties carousel nav */
[data-theme="light"] .np-carousel__btn {
  background: rgba(248, 245, 239, 0.82);
  color: #18120C;
}
[data-theme="light"] .np-carousel__btn:hover {
  background: rgba(248, 245, 239, 0.96);
}

/* Theme toggle button */
.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border-2);
  color: var(--c-text-secondary);
  background: transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-muted);
}

/* Icon visibility: show sun in dark mode, moon in light mode */
.theme-icon { display: none; }
.theme-icon--sun { display: block; }
[data-theme="light"] .theme-icon--sun { display: none; }
[data-theme="light"] .theme-icon--moon { display: block; }

/* On mobile the toggle sits beside the hamburger — keep it visible but slightly smaller */
@media (max-width: 1024px) {
  .theme-toggle { width: 30px; height: 30px; }
}

/* ============================================================
   DOWNLOAD GATE MODAL — shared across all project pages
   ============================================================ */
.dl-gate {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s ease;
}
.dl-gate.active { pointer-events: all; opacity: 1; }

.dl-gate__bd {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
}
.dl-gate__card {
  position: relative; z-index: 1;
  background: var(--c-surface);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-10);
  width: min(520px, calc(100vw - 2rem));
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.dl-gate.active .dl-gate__card { transform: translateY(0) scale(1); }

.dl-gate__close {
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-bg); border: 1px solid var(--c-border);
  color: var(--c-text-secondary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-base), color var(--t-base);
}
.dl-gate__close:hover { border-color: var(--c-gold-border); color: var(--c-gold); }

.dl-gate__eyebrow { font-size: var(--fs-xs); color: var(--c-gold); letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.dl-gate__title { font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--c-text); margin-bottom: var(--sp-3); }
.dl-gate__sub { font-size: var(--fs-sm); color: var(--c-text-secondary); line-height: 1.6; margin-bottom: var(--sp-6); }
.dl-gate__sub strong { color: var(--c-gold); }

.dl-gate__form { display: flex; flex-direction: column; gap: var(--sp-4); }
.dl-gate__form input {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5);
  color: var(--c-text); font-size: var(--fs-sm); outline: none;
  transition: border-color var(--t-base);
  font-family: var(--f-sans);
}
.dl-gate__form input:focus { border-color: var(--c-gold-border); }
.dl-gate__form input::placeholder { color: var(--c-text-muted); }

.dl-gate__note {
  font-size: var(--fs-xs); color: var(--c-text-muted);
  margin-top: var(--sp-4); line-height: 1.5;
}

@media (max-width: 500px) {
  .dl-gate__card { padding: var(--sp-8) var(--sp-6); }
}

/* ============================================================
   LANDING PAGE — AESTHETIC POLISH (index.html only)
   Visual depth & micro-interactions. No content or palette
   changes — only shadows, gradients of existing tones,
   spacing and hover refinements.
   ============================================================ */

/* — Hero: cinematic vignette for focus & depth — */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(135% 100% at 50% 38%, transparent 58%, rgba(0,0,0,0.42) 100%);
}

/* — Hero: typographic depth — */
.hero__eyebrow { margin-bottom: var(--sp-5); }

.hero__title {
  text-shadow: 0 2px 44px rgba(0,0,0,0.5);
}
.hero__title em {
  /* soft gold halo — same gold, just glowing */
  text-shadow: 0 0 42px rgba(201,173,51,0.30);
}

.hero__subtitle {
  text-shadow: 0 1px 26px rgba(0,0,0,0.55);
  letter-spacing: 0.005em;
}

/* — Hero: refined scroll cue — */
.hero__scroll-text { color: rgba(242,239,233,0.6); }

/* — Stats: interactive, elevated cards — */
.stat-card {
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out);
}
.stat-card:hover {
  transform: translateY(-6px);
  background: radial-gradient(130% 120% at 50% 0%,
              rgba(201,173,51,0.07), transparent 72%);
}
/* gold underline grows on hover (base state still grows in on .visible) */
.stat-card:hover::before { width: 60px; }

.stat-number { letter-spacing: 0.01em; }
.stat-number .suffix {
  text-shadow: 0 0 24px rgba(201,173,51,0.35);
}

@media (prefers-reduced-motion: reduce) {
  .stat-card:hover { transform: none; }
}
