/* ============================================================
   LAKE CITY LAHORE — OPTION 2 "DISCOVER YOUR PLACE"
   Design: Premium Property Portal
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: #1C1C1E;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select { font-family: inherit; }

/* ── TOKENS ── */
:root {
  --white:      #FFFFFF;
  --ivory:      #F7F4EF;
  --gold:       #FCB712;
  --gold-light: rgba(252,183,18,0.10);
  --ink:        #1C1C1E;
  --mist:       #6B7280;
  --border:     #E5E7EB;
  --dark:       #111111;
  --font-d:     'Bebas Neue', sans-serif;
  --font-s:     'Cormorant Garamond', serif;
  --font-b:     'Plus Jakarta Sans', sans-serif;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Exit animation */
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease;
}
.loader.exit {
  transform: translateY(-100%);
  opacity: 0;
}

/* Ambient gold radial glow behind logo */
.loader-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,183,18,0.07) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Gold corner accents */
.loader-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}
.loader.corners-in .loader-corner { opacity: 1; }
.loader-corner--tl { top: 40px;  left: 40px;  border-top: 1px solid rgba(252,183,18,0.5);  border-left: 1px solid rgba(252,183,18,0.5); }
.loader-corner--tr { top: 40px;  right: 40px; border-top: 1px solid rgba(252,183,18,0.5);  border-right: 1px solid rgba(252,183,18,0.5);}
.loader-corner--bl { bottom: 40px; left: 40px;  border-bottom: 1px solid rgba(252,183,18,0.5); border-left: 1px solid rgba(252,183,18,0.5);}
.loader-corner--br { bottom: 40px; right: 40px; border-bottom: 1px solid rgba(252,183,18,0.5); border-right: 1px solid rgba(252,183,18,0.5);}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Logo — clip-path wipe reveal from left */
.loader-logo-wrap {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.loader-logo-wrap.reveal {
  clip-path: inset(0 0% 0 0);
}
.loader-logo-wrap img {
  display: block;
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Progress bar */
.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
.loader-bar.reveal { opacity: 1; }
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, rgba(252,183,18,0.4), #FCB712);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.loader-fill.fill { width: 100%; }

/* Tagline */
.loader-tagline {
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}
.loader-tagline.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITY ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.section-label {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-label-light {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(252,183,18,0.85);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.title-serif {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.gold-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 28px;
  height: 52px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: filter 0.22s ease, transform 0.22s ease;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-sm { height: 40px; font-size: 0.62rem; padding: 0 20px; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }

/* Links */
.link-arrow {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--gold); }

.link-underline {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.link-underline:hover::after { width: 100%; }
.link-underline:hover { color: var(--gold); }

.link-light {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-light:hover { color: var(--gold); }

/* Reveal animations */
.reveal-up   { opacity: 0; transform: translateY(36px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right{ opacity: 0; transform: translateX(40px); }

/* ============================================================
   TOPBAR (minimal floating bar)
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.topbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.topbar-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.topbar.scrolled .topbar-logo img { filter: none; }

/* Menu toggle button */
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}
.toggle-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
}
.toggle-lines span {
  display: block;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: background 0.4s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.toggle-lines span:nth-child(2) { width: 70%; }
.topbar.scrolled .toggle-lines span { background: var(--ink); }
.toggle-label {
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
  transition: color 0.4s;
}
.topbar.scrolled .toggle-label { color: var(--ink); }

/* ============================================================
   SLIDE MENU (Binghatti-style full-screen)
   ============================================================ */
.slide-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 50% 50%;
  pointer-events: none;
  visibility: hidden;
}
.slide-menu.open {
  pointer-events: all;
  visibility: visible;
}

/* Left panel */
.slide-panel {
  position: relative;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 40px 56px 48px;
  transform: translateX(-100%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-menu.open .slide-panel { transform: translateX(0); }

/* Logo inside menu */
.slide-logo {
  display: block;
  margin-bottom: auto;
}
.slide-logo img {
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Nav links */
.slide-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 48px 0 32px;
  flex: 1;
  justify-content: center;
}
.slide-link {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  line-height: 1.25;
  text-align: right;
  display: block;
  /* Resting state — hidden and pushed left */
  opacity: 0;
  transform: translateX(-120px);
  transition:
    opacity   0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color     0.22s ease,
    letter-spacing 0.25s ease;
}
.slide-link:hover {
  color: var(--gold);
  letter-spacing: 0.13em;
}
/* Active / current page */
.slide-link.active { color: rgba(255,255,255,0.9); }

/* Revealed state — slides in from left */
.slide-menu.open .slide-link {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger — each link 90ms after the previous */
.slide-menu.open .slide-link[data-index="0"] { transition-delay: 0.18s; }
.slide-menu.open .slide-link[data-index="1"] { transition-delay: 0.27s; }
.slide-menu.open .slide-link[data-index="2"] { transition-delay: 0.36s; }
.slide-menu.open .slide-link[data-index="3"] { transition-delay: 0.45s; }
.slide-menu.open .slide-link[data-index="4"] { transition-delay: 0.54s; }
.slide-menu.open .slide-link[data-index="5"] { transition-delay: 0.63s; }
.slide-menu.open .slide-link[data-index="6"] { transition-delay: 0.72s; }

/* When closing — snap all back instantly (no stagger out) */
.slide-menu:not(.open) .slide-link {
  transition-delay: 0s !important;
  transition-duration: 0.25s;
}

/* Active link highlight */
.slide-link.active { color: white; }

/* Social icons row */
.slide-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}
.slide-menu.open .slide-socials {
  opacity: 1;
  transform: translateY(0);
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* Contact line */
.slide-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-b);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.4s ease 0.56s;
}
.slide-menu.open .slide-contact { opacity: 1; }
.slide-contact a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.slide-contact a:hover { color: var(--gold); }

/* Right panel */
.slide-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s;
}
.slide-menu.open .slide-right { opacity: 1; }
.slide-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.6);
}

/* Close button */
.slide-close {
  position: absolute;
  top: 36px;
  right: 40px;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, background 0.2s, color 0.2s;
}
.slide-menu.open .slide-close { opacity: 1; }
.slide-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ============================================================
   FLOATING CONTACT BUTTONS (right side)
   ============================================================ */
.floating-contacts {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  flex-shrink: 0;
}
.float-btn:hover {
  transform: translateX(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}
.float-wa    { background: #25D366; color: white; }
.float-phone { background: #1C1C1E; color: white; border: 1px solid rgba(255,255,255,0.08); }
.float-email { background: var(--gold); color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero-text {
  position: absolute;
  bottom: 260px;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 24px;
}
.hero-label {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-serif {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.1;
}
.hero-display {
  font-family: var(--font-d);
  font-size: clamp(4rem, 11vw, 9.5rem);
  letter-spacing: 0.04em;
  color: white;
  line-height: 0.92;
}
.hero-serif-sub {
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  color: rgba(255,255,255,0.6);
}

/* Search widget */
.search-widget {
  position: relative;
  z-index: 3;
  width: 100%;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.search-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 0;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
}
.search-label {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-select {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 500;
  padding-right: 22px;
  cursor: pointer;
  width: 100%;
}
.search-select option { background: #1C1C1E; color: white; }
.chevron {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: rgba(255,255,255,0.45);
  width: 14px;
}
.search-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  margin: 0 32px;
  flex-shrink: 0;
}
.search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 32px;
  height: 52px;
  white-space: nowrap;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: filter 0.22s, transform 0.22s;
  margin-left: 20px;
  flex-shrink: 0;
}
.search-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-text {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 40%;
  background: white;
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(180%); opacity: 0; }
  81%  { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   PROPERTY SECTION
   ============================================================ */
.properties-section {
  padding: 96px 0 80px;
  background: var(--white);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.tab {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mist);
  padding: 12px 20px;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
  background: var(--gold-light);
}

/* Property grid */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prop-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  background: white;
}
.prop-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.prop-card.hidden { display: none; }

.prop-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.prop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.prop-card:hover .prop-img img { transform: scale(1.05); }
.prop-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: white;
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

.prop-body { padding: 24px; }
.prop-title {
  font-family: var(--font-d);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.prop-sizes {
  font-family: var(--font-b);
  font-size: 0.72rem;
  color: var(--mist);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.prop-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.prop-features li {
  font-size: 0.8rem;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prop-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.prop-cta {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.prop-cta:hover { color: var(--gold); gap: 12px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--ivory);
  padding: 64px 0;
}
.stats-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; padding-right: 0; }
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-plus {
  font-family: var(--font-d);
  font-size: 0.7em;
  color: var(--gold);
}
.stat-unit {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.stat-desc {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mist);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--white);
  padding: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 600px;
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(48px, 7vw, 120px);
}
.about-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}
.about-serif {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  display: block;
  color: var(--mist);
  font-weight: 300;
}
.about-display {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5.5vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 0.96;
  display: block;
}
.about-body {
  font-size: 0.95rem;
  line-height: 1.72;
  color: #4B5563;
  max-width: 480px;
  margin-bottom: 32px;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.07) translate(-1%,-0.5%); }
}
.about-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.caption-label {
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.caption-text {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
}

/* ============================================================
   GOLF
   ============================================================ */
.golf-section {
  position: relative;
  height: clamp(500px, 85vh, 780px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.golf-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.golf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 40%,
    rgba(0,0,0,0.18) 100%
  );
}
.golf-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}
.golf-content { max-width: 540px; }
.golf-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.golf-num {
  font-family: var(--font-s);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1.1;
}
.golf-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.04em;
  color: white;
  line-height: 0.95;
}
.golf-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin-bottom: 32px;
}
.golf-card {
  width: 320px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.golf-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.golf-card-footer {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.golf-badge {
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.golf-badge-sub {
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

/* ============================================================
   MALL
   ============================================================ */
.mall-section {
  background: var(--ivory);
  overflow: hidden;
}
.mall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.mall-image {
  overflow: hidden;
}
.mall-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.mall-image:hover img { transform: scale(1.03); }
.mall-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 6vw, 96px);
}
.mall-title { margin-bottom: 20px; }
.mall-body {
  font-size: 0.92rem;
  line-height: 1.72;
  color: #4B5563;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Mini brand grid in mall section */
.mini-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.mini-brands img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.mini-brands img:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.10); }

.mall-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ============================================================
   COMMUNITY / AMENITIES
   ============================================================ */
.community-section {
  background: var(--white);
  padding: 96px 0;
}
.community-header {
  text-align: center;
  margin-bottom: 56px;
}
.community-header .section-label { justify-content: center; display: flex; }
.community-header .section-title { margin-top: 4px; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 280px;
  gap: 12px;
}
.amenity-cell { position: relative; overflow: hidden; border-radius: 12px; }
.amenity-cell:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; } /* tall left */
.amenity-cell:nth-child(2) { grid-column: 5 / 9; grid-row: 1; }
.amenity-cell:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.amenity-cell:nth-child(4) { grid-column: 5 / 9; grid-row: 2; }
.amenity-cell:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }

.amenity-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.amenity-cell:hover img { transform: scale(1.06); }
.amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background 0.3s;
}
.amenity-cell:hover .amenity-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
.amenity-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.amenity-cat {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.amenity-name {
  font-family: var(--font-d);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: white;
  line-height: 1.1;
}
.amenity-tag {
  font-family: var(--font-b);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ============================================================
   BRANDS MARQUEE
   ============================================================ */
.brands-section {
  background: var(--ivory);
  padding: 96px 0 80px;
  overflow: hidden;
}
.brands-header {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.brands-sub {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--mist);
  max-width: 280px;
}
.marquee-row-label {
  margin-bottom: 14px;
}
.row-label {
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}
.row-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  margin-bottom: 8px;
}
.marquee-track { display: flex; }
.marquee-inner {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  padding: 4px 0;
}
.marquee-inner img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.marquee-inner img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

/* Marquee animations */
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.marquee-left .marquee-inner  { animation: marqueeLeft  38s linear infinite; }
.marquee-right .marquee-inner { animation: marqueeRight 48s linear infinite; }
.marquee-wrap:hover .marquee-inner { animation-play-state: paused; }

/* Coming soon */
.brands-soon {
  margin-top: 40px;
}
.soon-label {
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 16px;
}
.soon-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.soon-chips span {
  font-family: var(--font-b);
  font-size: 0.72rem;
  color: var(--mist);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.soon-chips span:hover { border-color: var(--gold); color: var(--ink); }

/* ============================================================
   CONNECTIVITY
   ============================================================ */
.connect-section {
  background: #1A3C34;
  overflow: hidden;
}
.connect-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.connect-headline {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.0;
  margin-bottom: 48px;
}
.connect-gold { color: var(--gold); }
.connect-distances {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.distance-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.d-name {
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.d-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.d-time {
  font-family: var(--font-d);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}
.connect-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
}
.connect-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.5);
}
.connect-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pin-label {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ============================================================
   REGISTER / CTA
   ============================================================ */
.register-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45) saturate(0.7);
}
.register-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(26,60,52,0.65) 100%);
}
.register-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}
.register-headline {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: 0.04em;
  color: white;
  line-height: 0.95;
  margin: 16px 0;
}
.register-sub {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 48px;
}
.register-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-input {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  font-family: var(--font-b);
  font-size: 0.88rem;
  padding: 0 20px;
  height: 54px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus { border-color: var(--gold); }
.form-input option { background: #1C1C1E; color: white; }
.form-select { cursor: pointer; }
.btn-form {
  width: 100%;
  height: 58px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  justify-content: center;
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0D0D;
  padding: 0;
}
.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 240px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold); }
.footer-heading {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li, .footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom span { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .amenity-cell:nth-child(1) { grid-column: 1 / 2; grid-row: auto; }
  .amenity-cell:nth-child(2) { grid-column: 2 / 3; grid-row: auto; }
  .amenity-cell:nth-child(3) { grid-column: 1 / 2; grid-row: auto; }
  .amenity-cell:nth-child(4) { grid-column: 2 / 3; grid-row: auto; }
  .amenity-cell:nth-child(5) { grid-column: 1 / 3; grid-row: auto; }
  .amenity-cell { height: 260px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 380px; }
  .mall-grid { grid-template-columns: 1fr; }
  .mall-image { height: 320px; }
  .connect-grid { grid-template-columns: 1fr; gap: 48px; }
  .connect-map { height: 280px; }
  .golf-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 0; }
}

@media (max-width: 768px) {
  .topbar { padding: 0 24px; }

  /* Slide menu goes full width on mobile */
  .slide-menu { grid-template-columns: 1fr; }
  .slide-right { display: none; }
  .slide-panel { padding: 40px 32px 40px; }
  .slide-nav { align-items: flex-start; }
  .slide-link { text-align: left; font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .search-inner {
    grid-template-columns: 1fr;
    padding: 24px;
    min-height: auto;
    gap: 16px;
  }
  .search-sep { display: none; }
  .search-field { padding: 0; }
  .search-label { color: rgba(255,255,255,0.6); margin-bottom: 6px; }
  .search-select {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 12px 36px 12px 14px;
    width: 100%;
  }
  .select-wrap { display: block; }
  .chevron { top: 50%; transform: translateY(-50%); right: 12px; }
  .search-btn { width: 100%; justify-content: center; height: 52px; margin-left: 0; clip-path: none; border-radius: 6px; }

  .hero-text { bottom: auto; top: 50%; transform: translateY(-55%); }
  .scroll-cue { bottom: 20px; }

  .prop-grid { grid-template-columns: 1fr; }
  .stats-grid { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px; }

  .about-content { padding: 56px 24px; }
  .golf-inner { padding: 0 24px; }
  .mall-content { padding: 48px 24px; }
  .connect-grid { padding: 64px 24px; }

  .amenity-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .amenity-cell { height: 220px !important; grid-column: auto !important; grid-row: auto !important; }

  .form-row { grid-template-columns: 1fr; }
  .brands-header { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; }

  .container { padding: 0 24px; }
  .brands-section { padding: 64px 0 48px; }
  .community-section, .properties-section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-display { font-size: clamp(3rem, 16vw, 4.5rem); }
  .register-headline { font-size: clamp(2.8rem, 12vw, 4rem); }
  .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .filter-tabs { gap: 0; }
  .tab { padding: 10px 14px; font-size: 0.68rem; }
}
