/* ============================================
   LUXORICA — Premium Luxury Real Estate Website
   Color Scheme: Deep Maroon/Purple + Gold
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --maroon: #5E1C3A;
  --maroon-deep: #3D0F24;
  --maroon-light: #7A2348;
  --purple-dark: #2D0A3E;
  --gold: #C9A84C;
  --gold-light: #E4C875;
  --gold-pale: #F0DFA0;
  --gold-dark: #A07C30;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --cream: #F8F3E8;
  --cream-dark: #EDE4D0;
  --charcoal: #1A1A1A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Josefin Sans', 'Helvetica Neue', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.4);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-sans); }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: normal;
}
.cursor-trail {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s ease;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { transform: translate(-50%, -50%) scale(2); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--maroon-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- UTILITY ---- */
.container { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 120px 0; }
.dark-section { background: var(--maroon-deep); color: var(--white); }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 300; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 62px); font-weight: 300; line-height: 1.15;
  color: var(--maroon-deep); margin-bottom: 32px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-title.light { color: var(--white); }
.section-title.center { text-align: center; }
.section-eyebrow.center { text-align: center; }

/* ---- SCROLL REVEAL ---- */
.scroll-reveal, .reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.visible, .reveal-up.visible {
  opacity: 1; transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-deep);
  font-family: var(--font-sans); font-size: 11px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,168,76,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--font-sans); font-size: 11px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(30, 5, 20, 0.97);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo-img {
  height: 54px; width: auto; object-fit: contain;
  filter: brightness(1.1) saturate(1.2);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 300; color: var(--white-70);
  transition: var(--transition-fast); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--maroon-deep) !important; padding: 10px 24px !important;
  font-weight: 400 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: var(--transition); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--maroon-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 30px; right: 30px;
  color: var(--gold); font-size: 24px; padding: 10px;
}
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  font-family: var(--font-serif); font-size: 32px; font-weight: 300;
  color: var(--white); letter-spacing: 2px;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute; inset: 0;
}
.hero-bg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.18); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(61,15,36,0.3) 0%,
    rgba(30,5,20,0.7) 50%,
    rgba(30,5,20,0.92) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 600px; padding: 0 80px 0 0;
  text-align: right;
}
.hero-eyebrow {
  font-family: var(--font-script); font-size: 28px;
  color: var(--gold-light); margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(72px, 10vw, 120px);
  font-weight: 300; color: var(--white); line-height: 1;
  letter-spacing: -2px; margin-bottom: 16px;
}
.hero-title .title-serif { display: block; }
.hero-subtitle {
  font-family: var(--font-sans); font-size: 11px; font-weight: 300;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-location {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white-70); margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; justify-content: flex-end; }

.hero-scroll-hint {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--white-40); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  z-index: 10; animation: bounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineGrow 2s ease-in-out infinite;
}
@keyframes lineGrow {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-floating-badge {
  position: absolute; top: 50%; left: 60px; transform: translateY(-50%);
  z-index: 10;
}
.badge-inner {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.4);
  backdrop-filter: blur(10px); padding: 16px 20px;
  text-align: center;
}
.badge-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 4px;
}
.badge-value {
  font-size: 11px; font-weight: 400; color: var(--white); letter-spacing: 1px;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 18px 0; overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center; gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 300; color: var(--white-70); white-space: nowrap;
}
.marquee-track .dot { color: var(--gold); font-size: 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   OVERVIEW
   ============================================ */
.overview { background: var(--cream); }
.overview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.overview-text {
  font-family: var(--font-serif); font-size: 19px; font-weight: 300;
  line-height: 1.8; color: #4a3a3a; margin-bottom: 24px;
}
.overview-stats {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  padding-top: 36px; margin-top: 12px;
}
.stat { flex: 1; }
.stat-number {
  display: block; font-family: var(--font-serif); font-size: 42px;
  font-weight: 300; color: var(--gold-dark); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: #888; font-weight: 300;
}
.stat-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 32px;
}

.overview-img-stack { position: relative; height: 560px; }
.img-frame {
  position: absolute; overflow: hidden;
  border: 2px solid rgba(201,168,76,0.3);
}
.img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.img-frame:hover img { transform: scale(1.05); }
.main-frame {
  top: 0; left: 0; width: 75%; height: 75%;
  box-shadow: var(--shadow-deep);
}
.accent-frame {
  bottom: 0; right: 0; width: 52%; height: 48%;
  border-color: var(--gold); box-shadow: var(--shadow-gold);
}
.overview-gold-block {
  position: absolute; top: 70%; left: 0; transform: translateY(-50%);
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  padding: 28px 32px; z-index: 5;
  border-left: 3px solid var(--gold);
}
.gold-text {
  font-family: var(--font-serif); font-size: 22px; font-weight: 300;
  color: var(--white); line-height: 1.4;
}
.gold-text em { color: var(--gold-light); font-style: italic; }

/* ============================================
   PARALLAX BANNER
   ============================================ */
.parallax-banner {
  position: relative; height: 80vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pb-bg {
  position: absolute; inset: -20%;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.pb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,5,20,0.75), rgba(94,28,58,0.85));
}
.pb-content {
  position: relative; z-index: 5;
  text-align: center; max-width: 800px; padding: 0 40px;
}
.pb-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.pb-heading {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 80px); font-weight: 300;
  color: var(--white); line-height: 1.15; margin-bottom: 36px;
}
.pb-heading em { color: var(--gold-light); font-style: italic; }
.pb-sub {
  font-family: var(--font-serif); font-size: 20px; font-weight: 300;
  color: var(--white-70); font-style: italic;
}

/* ============================================
   RESIDENCES
   ============================================ */
.residences { background: var(--cream); }
.residences-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 64px;
}
.residence-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.2);
  padding: 52px 44px; position: relative; transition: var(--transition);
}
.residence-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(94,28,58,0.12);
  border-color: var(--gold);
}
.residence-card.featured {
  background: linear-gradient(145deg, var(--maroon-deep), var(--maroon));
  border-color: var(--gold);
}
.rc-featured-label {
  position: absolute; top: -1px; right: 32px;
  background: var(--gold); color: var(--maroon-deep);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; font-weight: 400;
}
.rc-badge {
  font-family: var(--font-serif); font-size: 56px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 20px;
}
.residence-card.featured .rc-badge { color: var(--gold-light); }
.rc-icon {
  width: 80px; height: 80px; color: var(--gold-dark);
  margin-bottom: 24px; opacity: 0.6;
}
.residence-card.featured .rc-icon { color: var(--gold-light); opacity: 0.8; }
.residence-card h3 {
  font-family: var(--font-serif); font-size: 28px; font-weight: 400;
  color: var(--maroon-deep); margin-bottom: 16px;
}
.residence-card.featured h3 { color: var(--white); }
.residence-card p {
  font-family: var(--font-serif); font-size: 17px; font-weight: 300;
  color: #666; line-height: 1.7; margin-bottom: 28px;
}
.residence-card.featured p { color: var(--white-70); }
.rc-features { margin-bottom: 36px; }
.rc-features li {
  font-size: 12px; letter-spacing: 1px; color: #555;
  padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; gap: 10px;
}
.rc-features li::before {
  content: '✦'; color: var(--gold); font-size: 8px; flex-shrink: 0;
}
.residence-card.featured .rc-features li { color: var(--white-70); border-color: rgba(255,255,255,0.1); }
.rc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border: 1px solid var(--gold);
  color: var(--gold); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; transition: var(--transition);
}
.rc-btn:hover { background: var(--gold); color: var(--maroon-deep); }
.rc-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-deep); border: none; font-weight: 400;
}
.rc-btn-gold:hover { background: linear-gradient(135deg, var(--gold-pale), var(--gold)); transform: translateY(-2px); }

/* ============================================
   LIFESTYLE
   ============================================ */
.lifestyle { background: var(--cream-dark); overflow: hidden; }
.lifestyle-scroll-row {
  display: flex; gap: 0; margin-top: 64px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.lifestyle-scroll-row::-webkit-scrollbar { display: none; }
.lsc-item {
  min-width: 340px; scroll-snap-align: start;
  flex-shrink: 0; background: var(--white); overflow: hidden;
  transition: var(--transition); border: 1px solid rgba(201,168,76,0.15);
}
.lsc-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.lsc-img-wrap { height: 380px; overflow: hidden; }
.lsc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.lsc-item:hover .lsc-img-wrap img { transform: scale(1.06); }
.lsc-text { padding: 32px 28px; }
.lsc-text h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 400;
  color: var(--maroon-deep); margin-bottom: 10px; line-height: 1.4;
}
.lsc-text h3 em { color: var(--gold-dark); }
.lsc-text p {
  font-family: var(--font-serif); font-size: 16px; font-weight: 300;
  color: #777; line-height: 1.6;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities { position: relative; overflow: hidden; }
.amenities-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 64px;
}
.amenity-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.1);
  padding: 40px 32px; text-align: center;
  transition: var(--transition); cursor: default;
}
.amenity-card:hover {
  background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.amenity-icon {
  width: 48px; height: 48px; color: var(--gold);
  margin: 0 auto 20px; opacity: 0.8;
}
.amenity-card h4 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 400;
  color: var(--white); margin-bottom: 10px;
}
.amenity-card p {
  font-size: 13px; font-weight: 300; color: var(--white-60);
  line-height: 1.6;
}

/* ============================================
   LOCATION
   ============================================ */
.location { background: var(--cream); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.location-text {
  font-family: var(--font-serif); font-size: 19px; font-weight: 300;
  line-height: 1.8; color: #4a3a3a; margin-bottom: 40px;
}
.location-highlights { display: flex; flex-direction: column; gap: 20px; }
.lh-item { display: flex; align-items: flex-start; gap: 18px; }
.lh-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; margin-top: 6px; flex-shrink: 0;
}
.lh-item h5 {
  font-family: var(--font-sans); font-size: 12px; font-weight: 400;
  letter-spacing: 1px; color: var(--maroon-deep); margin-bottom: 4px;
}
.lh-item p { font-size: 12px; font-weight: 300; color: #888; letter-spacing: 0.5px; }

.location-map-wrap { position: relative; height: 560px; }
.map-pin-container { position: relative; height: 100%; overflow: hidden; }
.map-visual { height: 100%; overflow: hidden; }
.map-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) brightness(0.9); }
.map-pin-overlay {
  position: absolute; inset: 0;
  background: rgba(30,5,20,0.5);
  display: flex; align-items: center; justify-content: center;
}
.map-pin-badge {
  background: rgba(30,5,20,0.9); border: 1px solid var(--gold);
  padding: 24px 32px; text-align: center;
  backdrop-filter: blur(10px);
}
.map-pin-badge svg { margin: 0 auto 8px; }
.map-pin-badge p {
  font-family: var(--font-serif); font-size: 20px; font-weight: 400;
  color: var(--white); margin-bottom: 4px;
}
.map-pin-badge span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { overflow: hidden; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px; margin-top: 64px;
}
.gal-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.gal-item.gal-tall { grid-row: span 2; }
.gal-item.gal-wide { grid-column: span 2; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,5,20,0.8), transparent);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.4s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   DEVELOPERS
   ============================================ */
.developers { background: var(--cream); }
.developers-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px;
  align-items: center; margin-top: 64px;
}
.dev-divider {
  width: 1px; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.dev-card { text-align: center; padding: 40px; }
.dev-logo-text {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.dev-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-deep); font-size: 28px; font-family: var(--font-serif); font-weight: 600;
}
.dev-logo-text > div { text-align: left; }
.dev-logo-text strong {
  display: block; font-family: var(--font-sans); font-size: 18px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; color: var(--maroon-deep);
}
.dev-logo-text em {
  display: block; font-family: var(--font-serif); font-size: 14px; font-style: italic;
  color: var(--gold-dark);
}
.dev-card p {
  font-family: var(--font-serif); font-size: 16px; font-weight: 300;
  line-height: 1.8; color: #666; margin-bottom: 28px;
}
.dev-highlight {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.dev-highlight span {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-dark); padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ============================================
   CONTACT
   ============================================ */
.contact { position: relative; overflow: hidden; }
.contact-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(201,168,76,0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(201,168,76,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-desc {
  font-family: var(--font-serif); font-size: 18px; font-weight: 300;
  color: var(--white-70); line-height: 1.8; margin-bottom: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.ci-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 1px; color: var(--white-70);
  transition: color 0.3s ease;
}
.ci-item:hover { color: var(--gold); }
.ci-addr { cursor: default; }
.rera-note {
  padding: 16px 20px; border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.06); margin-bottom: 36px;
}
.rera-note p { font-size: 11px; color: var(--white-40); letter-spacing: 1px; line-height: 1.8; }
.contact-logos { margin-top: 32px; }
.contact-brand-logo { height: 60px; filter: brightness(1.2); }

/* ---- RSVP FORM ---- */
.rsvp-form {
  background: var(--white); padding: 52px 44px;
  border: 1px solid rgba(201,168,76,0.3);
}
.form-title {
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  color: var(--maroon-deep); margin-bottom: 36px; letter-spacing: 0.5px;
}
.form-row { margin-bottom: 20px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-row.two-col .form-group { margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: #999; font-weight: 400;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1px solid #ddd; border-radius: 0;
  font-size: 14px; color: var(--charcoal); background: var(--cream);
  transition: border-color 0.3s ease;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: none; }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--white); font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 400;
  transition: var(--transition); border: 1px solid rgba(201,168,76,0.3);
  margin-top: 8px;
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-deep); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.form-note {
  text-align: center; margin-top: 16px;
  font-size: 11px; color: #aaa; letter-spacing: 0.5px;
}

.form-success {
  display: none; background: var(--white);
  padding: 80px 44px; text-align: center;
  border: 1px solid var(--gold);
}
.form-success.show { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.success-icon {
  font-size: 36px; color: var(--gold); margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.form-success h3 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 300;
  color: var(--maroon-deep); margin-bottom: 16px;
}
.form-success p {
  font-family: var(--font-serif); font-size: 17px; font-weight: 300;
  color: #666; line-height: 1.7; margin-bottom: 12px;
}
.success-phone a { color: var(--gold-dark); font-weight: 400; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0D0108; border-top: 1px solid rgba(201,168,76,0.15);
  color: var(--white); padding: 80px 0 40px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px; line-height: 2; color: var(--white-40); font-weight: 300;
}
.footer-links h5, .footer-contact h5 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 400;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px; color: var(--white-40); transition: color 0.3s ease; font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact a {
  display: block; font-size: 18px; font-family: var(--font-serif);
  color: var(--gold); margin-bottom: 16px; transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 13px; color: var(--white-40); line-height: 1.8; font-weight: 300; }
.dev-by { color: var(--gold) !important; font-size: 10px !important; letter-spacing: 2px !important; text-transform: uppercase !important; margin-top: 20px !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px;
}
.rera-footer {
  font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-bottom: 12px;
}
.disclaimer {
  font-size: 11px; color: var(--white-40); line-height: 1.7; margin-bottom: 16px; max-width: 800px;
}
.copyright { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ============================================
   FLOATING CTA & BACK TO TOP
   ============================================ */
.floating-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-deep); padding: 14px 24px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  transform: translateY(100px); opacity: 0;
  transition: var(--transition);
}
.floating-cta.show { transform: translateY(0); opacity: 1; }
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.5); }

.back-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 500;
  width: 48px; height: 48px;
  background: rgba(94,28,58,0.9); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  transform: translateY(100px); opacity: 0; transition: var(--transition);
  backdrop-filter: blur(10px);
}
.back-top.show { transform: translateY(0); opacity: 1; }
.back-top:hover { background: var(--gold); color: var(--maroon-deep); transform: translateY(-3px); }

/* ============================================
   PARTICLE ANIMATIONS
   ============================================ */
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.3; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .container { padding: 0 30px; }
  .nav { padding: 20px 30px; }
  .nav.scrolled { padding: 14px 30px; }
  .nav-links { gap: 24px; }
  .overview-grid { gap: 60px; }
  .residences-grid { gap: 20px; }
  .gallery-masonry { grid-template-rows: repeat(2, 220px); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 30px; text-align: center; width: 100%; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-floating-badge { display: none; }
  .overview-grid { grid-template-columns: 1fr; gap: 60px; }
  .overview-right { order: -1; }
  .overview-img-stack { height: 420px; }
  .residences-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 50px; }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gal-item.gal-tall { grid-row: span 1; }
  .gal-item.gal-wide { grid-column: span 2; }
  .developers-grid { grid-template-columns: 1fr; }
  .dev-divider { width: 80%; height: 1px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}

@media (max-width: 600px) {
  .section-pad { padding: 80px 0; }
  .container { padding: 0 20px; }
  .hero-title { font-size: 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .rsvp-form { padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item { height: 240px; }
  .gal-item.gal-wide { grid-column: span 1; }
  .lsc-item { min-width: 280px; }
  .floating-cta { bottom: 20px; right: 20px; padding: 12px 16px; font-size: 9px; }
  .back-top { left: 20px; bottom: 20px; }
}
