﻿/* Panorama Ultra â€” premium layer on top of panorama-advanced */

:root {
  --cream: #f3f0ea;
  --glow: rgba(201, 169, 98, 0.45);
}

body.is-loading { overflow: hidden; }
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button { cursor: none; }

/* Film grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 10002;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--gold);
}
.cursor-ring {
  width: 40px; height: 40px; border: 1px solid rgba(201, 169, 98, 0.55);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
}
.cursor-ring.hover {
  width: 56px; height: 56px; background: rgba(201, 169, 98, 0.08);
  border-color: var(--gold);
}

/* Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 20000;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
}
.preloader-logo {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white); overflow: hidden;
}
.preloader-logo span { color: var(--gold); display: inline-block; }
.preloader-bar {
  width: min(280px, 70vw); height: 2px; background: rgba(255,255,255,0.12);
  border-radius: 999px; overflow: hidden;
}
.preloader-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--sky)); }
.preloader-pct {
  font-size: 0.75rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.45);
}

/* Side section rail */
.section-rail {
  position: fixed; right: 1.75rem; top: 50%; transform: translateY(-50%);
  z-index: 900; display: flex; flex-direction: column; gap: 1rem;
}
.rail-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35); background: transparent;
  transition: all 0.35s; position: relative;
}
.rail-dot::after {
  content: attr(data-label);
  position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%);
  white-space: nowrap; font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); opacity: 0;
  transition: opacity 0.3s; pointer-events: none;
}
.rail-dot:hover::after, .rail-dot.active::after { opacity: 1; }
.rail-dot.active {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 20px var(--glow);
}
@media (max-width: 1100px) { .section-rail { display: none; } }

/* Hero canvas + layers */
#hero-canvas {
  position: absolute; inset: 0; z-index: 1; opacity: 0.55;
}
.hero-layers { position: absolute; inset: 0; z-index: 0; }
.hero-layer {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-layer--back {
  background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920&q=80');
  filter: brightness(0.55) saturate(1.1);
}
.hero-layer--mid {
  background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1920&q=80');
  opacity: 0.35; mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, transparent, black 40%, black 70%, transparent);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(8,18,35,0.85) 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--1 { width: 400px; height: 400px; background: var(--gold); top: 10%; left: -5%; }
.hero-orb--2 { width: 300px; height: 300px; background: var(--sky); bottom: 10%; right: -5%; animation-delay: -4s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 0.5rem;
  opacity: 0;
}
.hero-cta {
  padding: 0.9rem 2rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cta--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); box-shadow: 0 8px 32px rgba(201,169,98,0.35);
}
.hero-cta--ghost {
  border: 1px solid rgba(255,255,255,0.35); color: var(--white);
  backdrop-filter: blur(8px);
}
.hero-cta:hover { transform: translateY(-3px); }

/* Marquee */
.marquee-section {
  background: var(--navy); padding: 1.25rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; width: max-content; gap: 3rem;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: nowrap;
}
.marquee-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats */
.stats-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream); position: relative; overflow: hidden;
}
.stats-section::before {
  content: 'PANORAMA'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(12,31,61,0.04); white-space: nowrap; pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  text-align: center; padding: 2rem 1rem;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(12,31,61,0.06);
  border: 1px solid rgba(12,31,61,0.05);
  transform: translateY(40px); opacity: 0;
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold); line-height: 1;
}
.stat-num small { font-size: 0.5em; color: var(--sky); }
.stat-label {
  margin-top: 0.5rem; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

/* Balcony panorama */
.panorama-section {
  height: 350vh; background: #060f1c; position: relative;
}
.panorama-pin {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.panorama-stage {
  position: relative; width: min(1000px, 92vw); height: min(560px, 62vh);
  perspective: 1400px; transform-style: preserve-3d;
}
.panorama-cylinder {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transform: translateZ(-520px);
}
.panorama-panel {
  position: absolute; left: 50%; top: 50%;
  width: min(420px, 55vw); height: min(480px, 58vh);
  margin-left: calc(min(420px, 55vw) / -2);
  margin-top: calc(min(480px, 58vh) / -2);
  border-radius: 16px; overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.panorama-panel img { width: 100%; height: 100%; object-fit: cover; }
.panorama-ui {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  text-align: center; color: var(--white); z-index: 5; width: 90%;
}
.panorama-ui .label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.panorama-ui h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400;
}
.panorama-compass {
  position: absolute; top: 12%; right: 8%; width: 72px; height: 72px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.65rem; letter-spacing: 0.1em;
}
.panorama-compass-needle {
  position: absolute; width: 2px; height: 28px;
  background: linear-gradient(180deg, var(--gold), transparent);
  transform-origin: bottom center; top: 14px;
}

/* Amenities bento */
.amenities-section {
  padding: clamp(5rem, 10vw, 8rem) 0; background: var(--white);
}
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy); margin-top: 0.5rem; font-weight: 400;
}
.section-head .split-line { overflow: hidden; display: block; }
.section-head .split-inner { display: inline-block; }

.bento-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px;
  gap: 1rem;
}
.bento-card {
  border-radius: 20px; overflow: hidden; position: relative;
  background: var(--navy); color: var(--white);
  transform-style: preserve-3d; transform: translateY(50px); opacity: 0;
}
.bento-card--lg { grid-column: span 6; grid-row: span 2; }
.bento-card--md { grid-column: span 4; grid-row: span 2; }
.bento-card--sm { grid-column: span 3; grid-row: span 1; }
@media (max-width: 900px) {
  .bento-card--lg, .bento-card--md { grid-column: span 12; grid-row: span 1; min-height: 200px; }
  .bento-card--sm { grid-column: span 6; }
}
.bento-card img {
  position: absolute; inset: 0; opacity: 0.45; transition: transform 0.8s, opacity 0.5s;
}
.bento-card:hover img { transform: scale(1.08); opacity: 0.55; }
.bento-content {
  position: relative; z-index: 2; padding: 1.5rem; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(0deg, rgba(12,31,61,0.92) 0%, transparent 70%);
}
.bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,169,98,0.2); display: flex; align-items: center; justify-content: center;
  margin-bottom: auto; font-size: 1.25rem;
}
.bento-content h3 {
  font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.25rem;
}
.bento-content p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* Neighbourhood */
.hood-section {
  padding: clamp(5rem, 10vw, 8rem) 0; background: var(--navy); color: var(--white);
  overflow: hidden;
}
.hood-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 900px) { .hood-wrap { grid-template-columns: 1fr; } }
.hood-map {
  position: relative; aspect-ratio: 1; border-radius: 24px; overflow: hidden;
  background: #0a1828; border: 1px solid rgba(255,255,255,0.08);
}
.hood-map img { opacity: 0.5; filter: saturate(0.6); }
.hood-pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 6px rgba(201,169,98,0.25);
  transform: scale(0);
}
.hood-pin::after {
  content: attr(data-name); position: absolute; left: 20px; top: -4px;
  white-space: nowrap; font-size: 0.7rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}
.hood-pin--1 { top: 42%; left: 48%; }
.hood-pin--2 { top: 28%; left: 62%; }
.hood-pin--3 { top: 58%; left: 35%; }
.hood-list { list-style: none; margin-top: 2rem; }
.hood-list li {
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; font-size: 0.95rem;
  transform: translateX(-30px); opacity: 0;
}
.hood-list strong { color: var(--gold); font-weight: 500; }

/* Testimonials stack */
.testimonials-section {
  padding: clamp(5rem, 10vw, 8rem) 0; background: var(--cream);
}
.testimonial-stack {
  position: relative; height: 420px; max-width: 640px; margin: 0 auto;
}
.testimonial-card {
  position: absolute; inset: 0; padding: 2.5rem;
  background: var(--white); border-radius: 24px;
  box-shadow: 0 30px 80px rgba(12,31,61,0.1);
  border: 1px solid rgba(12,31,61,0.06);
  transform-origin: center bottom;
}
.testimonial-card:nth-child(1) { z-index: 3; }
.testimonial-card:nth-child(2) { z-index: 2; }
.testimonial-card:nth-child(3) { z-index: 1; }
.testimonial-stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; }
.testimonial-text {
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1.5;
  color: var(--navy); margin-bottom: 1.5rem;
}
.testimonial-author { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--muted); }

/* FAQ */
.faq-section { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(12,31,61,0.08); overflow: hidden;
}
.faq-q {
  width: 100%; padding: 1.35rem 0; text-align: left;
  background: none; border: none; font-size: 1rem; font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.faq-q span { font-size: 1.5rem; color: var(--gold); transition: transform 0.35s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.45s ease;
}
.faq-a-inner {
  padding: 0 0 1.25rem; color: var(--muted); line-height: 1.7; font-size: 0.95rem;
}

/* Contact split */
.contact-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(160deg, #081528 0%, var(--navy) 50%, #0f2848 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 1rem 1.25rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
  color: var(--white); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.15);
}
.contact-form button {
  padding: 1rem 2rem; border: none; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-form button:hover {
  transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,98,0.4);
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 2rem; margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 1rem; margin-bottom: 1.25rem; color: rgba(255,255,255,0.75);
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(201,169,98,0.15); display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem; background: #050d18; color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.9rem; margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}

/* Clip reveal images */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
}

/* Magnetic */
.magnetic { display: inline-block; }

/* Mobile cursor off */
@media (max-width: 1024px), (pointer: coarse) {
  body.cursor-on { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-orb { animation: none; }
}


/* === panorama-advanced.html inline styles === */
    :root {
      --navy: #0c1f3d;
      --navy-light: #152d52;
      --gold: #c9a962;
      --gold-light: #e4c98a;
      --sky: #4a9fd4;
      --white: #fff;
      --off: #f8f7f4;
      --text: #1a1a1a;
      --muted: #5a5a5a;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Inter', system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { font-size: 16px; }
    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }

    body {
      font-family: var(--font-body);
      background: var(--off);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; height: 100%; object-fit: cover; }

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

    .container {
      width: min(1280px, 92vw);
      margin: 0 auto;
    }

    /* Scroll progress */
    #scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--sky));
      z-index: 10001; pointer-events: none;
    }

    /* Nav */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1.25rem 0;
      transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
    }
    .nav.scrolled {
      background: rgba(12, 31, 61, 0.92);
      backdrop-filter: blur(16px);
      padding: 0.75rem 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      width: min(1280px, 92vw); margin: 0 auto;
    }
    .logo {
      font-family: var(--font-display);
      font-size: 1.5rem; color: var(--white); font-weight: 600;
    }
    .logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      padding: 0.65rem 1.5rem; border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy); font-weight: 600; font-size: 0.875rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,98,0.4); }

    @media (max-width: 768px) {
      .nav-links { display: none; }
    }

    /* Hero */
    .hero {
      position: relative; height: 100vh; min-height: 600px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%; object-fit: cover;
      transform: scale(1.15);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(12,31,61,0.45) 0%, rgba(12,31,61,0.75) 55%, rgba(12,31,61,0.95) 100%);
    }
    .hero-content {
      position: relative; z-index: 2; text-align: center;
      color: var(--white); padding: 0 1.5rem; max-width: 900px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 1.25rem; border-radius: 999px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
      opacity: 0;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 7vw, 5rem);
      font-weight: 400; line-height: 1.1; margin-bottom: 1.25rem;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-title .word { display: inline-block; overflow: hidden; }
    .hero-title .word-inner { display: inline-block; }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,0.75); line-height: 1.7;
      max-width: 600px; margin: 0 auto 2rem; opacity: 0;
    }
    .hero-scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
      color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.15em;
      text-transform: uppercase; opacity: 0;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(180deg, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
      50% { transform: scaleY(1); opacity: 1; }
    }

    /* ===== BUILDING OPEN SECTION ===== */
    .building-section {
      position: relative; height: 300vh;
      background: var(--navy);
    }
    .building-pin {
      position: sticky; top: 0; height: 100vh;
      overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .building-stage {
      position: relative; width: min(900px, 90vw); height: min(600px, 70vh);
      perspective: 1200px;
    }
    .building-interior {
      position: absolute; inset: 0; border-radius: 12px; overflow: hidden;
      transform: scale(0.85); opacity: 0.3;
    }
    .building-interior img { width: 100%; height: 100%; object-fit: cover; }
    .building-interior-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,169,98,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .building-panel {
      position: absolute; top: 0; bottom: 0; width: 50%;
      overflow: hidden; z-index: 2;
      box-shadow: 0 0 60px rgba(0,0,0,0.5);
    }
    .building-panel--left { left: 0; transform-origin: left center; }
    .building-panel--right { right: 0; transform-origin: right center; }
    .building-panel img { width: 200%; height: 100%; object-fit: cover; }
    .building-panel--left img { object-position: left center; }
    .building-panel--right img { object-position: right center; margin-left: -100%; }
    .building-panel-edge {
      position: absolute; top: 0; bottom: 0; width: 4px;
      background: linear-gradient(180deg, var(--gold), var(--sky));
      z-index: 3;
    }
    .building-panel--left .building-panel-edge { right: 0; }
    .building-panel--right .building-panel-edge { left: 0; }
    .building-caption {
      position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
      text-align: center; color: var(--white); z-index: 10;
      width: 90%; pointer-events: none;
    }
    .building-caption h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400;
      margin-bottom: 0.5rem;
    }
    .building-caption p {
      font-size: 1rem; color: rgba(255,255,255,0.65);
      opacity: 0; transform: translateY(20px);
    }
    .building-progress {
      position: absolute; bottom: 3%; left: 50%; transform: translateX(-50%);
      width: 120px; height: 3px; background: rgba(255,255,255,0.15);
      border-radius: 999px; overflow: hidden; z-index: 10;
    }
    .building-progress-fill {
      height: 100%; width: 0%; background: var(--gold); border-radius: 999px;
    }

    /* ===== DOOR REVEAL SECTION ===== */
    .door-section {
      position: relative; height: 250vh;
      background: linear-gradient(180deg, var(--navy) 0%, #0a1828 100%);
    }
    .door-pin {
      position: sticky; top: 0; height: 100vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .door-scene {
      position: relative; width: min(700px, 88vw); height: min(520px, 65vh);
      perspective: 1000px;
    }
    .door-room {
      position: absolute; inset: 0; border-radius: 8px; overflow: hidden;
    }
    .door-room img { width: 100%; height: 100%; object-fit: cover; }
    .door-room-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(12,31,61,0.2), transparent);
    }
    .door-frame {
      position: absolute; inset: 8% 15%; z-index: 2;
      border: 3px solid rgba(201,169,98,0.6); border-radius: 4px;
      pointer-events: none;
    }
    .door-leaf {
      position: absolute; top: 8%; left: 15%; width: 35%; height: 84%;
      transform-origin: left center;
      transform-style: preserve-3d;
      z-index: 3;
    }
    .door-front, .door-back {
      position: absolute; inset: 0; backface-visibility: hidden;
      border-radius: 2px; overflow: hidden;
    }
    .door-front {
      background: linear-gradient(145deg, #2a1f14 0%, #1a1208 100%);
      border: 2px solid var(--gold);
      box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 4px 0 20px rgba(0,0,0,0.4);
    }
    .door-front::before {
      content: ''; position: absolute; right: 12%; top: 50%;
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--gold); box-shadow: 0 0 12px var(--gold);
      transform: translateY(-50%);
    }
    .door-front::after {
      content: ''; position: absolute; inset: 12%;
      border: 1px solid rgba(201,169,98,0.3);
    }
    .door-back {
      transform: rotateY(180deg);
      background: #1a1208;
    }
    .door-light {
      position: absolute; top: 8%; left: 15%; width: 35%; height: 84%;
      background: radial-gradient(ellipse at left center, rgba(255,220,150,0.6) 0%, transparent 70%);
      opacity: 0; z-index: 1; pointer-events: none;
      mix-blend-mode: screen;
    }
    .door-label {
      position: absolute; top: 12%; right: 8%; z-index: 5;
      text-align: right; color: var(--white);
    }
    .door-label .room-tag {
      font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.5rem;
    }
    .door-label h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 400;
    }

    /* ===== HORIZONTAL INTERIOR TOUR ===== */
    .tour-section {
      position: relative; height: 400vh;
      background: var(--off);
    }
    .tour-pin {
      position: sticky; top: 0; height: 100vh;
      overflow: hidden; display: flex; flex-direction: column;
      justify-content: center;
    }
    .tour-header {
      text-align: center; padding: 2rem 1.5rem 1rem;
      z-index: 2;
    }
    .tour-header .label {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
    }
    .tour-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); font-weight: 400;
    }
    .tour-track-wrap {
      flex: 1; display: flex; align-items: center; overflow: hidden;
      padding: 0 0 2rem;
    }
    .tour-track {
      display: flex; gap: 2rem; padding: 0 5vw;
      will-change: transform;
    }
    .tour-room {
      flex: 0 0 min(75vw, 680px); height: min(55vh, 420px);
      position: relative; border-radius: 20px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(12,31,61,0.2);
    }
    .tour-room img { width: 100%; height: 100%; object-fit: cover; }
    .tour-room-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 2rem; background: linear-gradient(0deg, rgba(12,31,61,0.9) 0%, transparent 100%);
      color: var(--white); transform: translateY(30px); opacity: 0;
    }
    .tour-room-info h3 {
      font-family: var(--font-display); font-size: 1.75rem; font-weight: 400;
      margin-bottom: 0.35rem;
    }
    .tour-room-info p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
    .tour-room-num {
      position: absolute; top: 1.5rem; left: 1.5rem;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--gold); color: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.9rem;
    }
    .tour-progress {
      display: flex; justify-content: center; gap: 0.5rem;
      padding-bottom: 1.5rem;
    }
    .tour-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(12,31,61,0.2); transition: all 0.4s;
    }
    .tour-dot.active {
      background: var(--gold); width: 28px; border-radius: 999px;
    }

    /* ===== FLOOR PLAN EXPAND ===== */
    .floorplan-section {
      padding: clamp(4rem, 10vw, 8rem) 0;
      background: var(--white);
    }
    .floorplan-header { text-align: center; margin-bottom: 3rem; }
    .floorplan-header .label {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold);
    }
    .floorplan-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem); color: var(--navy);
      margin-top: 0.5rem;
    }
    .floorplan-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
      align-items: center;
    }
    @media (max-width: 900px) {
      .floorplan-wrap { grid-template-columns: 1fr; }
    }
    .floorplan-visual {
      position: relative; aspect-ratio: 4/3; border-radius: 20px;
      overflow: hidden; background: var(--navy);
    }
    .floorplan-base {
      position: absolute; inset: 0; opacity: 0.4;
    }
    .floorplan-base img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); }
    .floorplan-rooms {
      position: absolute; inset: 10%;
      display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px;
    }
    .fp-room {
      background: rgba(201,169,98,0.15); border: 2px solid rgba(201,169,98,0.4);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 600; color: var(--gold);
      text-transform: uppercase; letter-spacing: 0.08em;
      transform: scale(0); opacity: 0;
    }
    .floorplan-details h3 {
      font-family: var(--font-display); font-size: 2rem; color: var(--navy);
      margin-bottom: 1rem;
    }
    .floorplan-specs {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0;
    }
    .fp-spec {
      padding: 1.25rem; background: var(--off); border-radius: 12px;
      transform: translateY(30px); opacity: 0;
    }
    .fp-spec strong {
      display: block; font-family: var(--font-display);
      font-size: 1.75rem; color: var(--gold); font-weight: 600;
    }
    .fp-spec span { font-size: 0.85rem; color: var(--muted); }

    /* ===== SUITES GRID ===== */
    .suites-section {
      padding: clamp(4rem, 10vw, 7rem) 0;
      background: var(--navy);
    }
    .suites-header { text-align: center; color: var(--white); margin-bottom: 3rem; }
    .suites-header .label { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
    .suites-header h2 {
      font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
      margin-top: 0.5rem; font-weight: 400;
    }
    .suites-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .suite-card {
      border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      transform: translateY(60px); opacity: 0;
    }
    .suite-card-img {
      height: 220px; overflow: hidden;
    }
    .suite-card-img img { transition: transform 0.6s ease; }
    .suite-card:hover .suite-card-img img { transform: scale(1.08); }
    .suite-card-body { padding: 1.5rem; color: var(--white); }
    .suite-price { font-family: var(--font-display); font-size: 1.75rem; color: var(--gold); }
    .suite-price small { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-family: var(--font-body); }
    .suite-addr { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0.5rem 0 1rem; }
    .suite-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .suite-tag {
      padding: 0.3rem 0.75rem; border-radius: 999px; font-size: 0.75rem;
      background: rgba(201,169,98,0.15); color: var(--gold-light);
    }

    /* ===== CTA ===== */
    .cta-section {
      padding: clamp(5rem, 12vw, 9rem) 0;
      text-align: center; position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    }
    .cta-bg-text {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display); font-size: clamp(6rem, 18vw, 14rem);
      color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none;
    }
    .cta-content { position: relative; z-index: 1; color: var(--white); }
    .cta-content h2 {
      font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400; margin-bottom: 1rem;
    }
    .cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.1rem; }
    .cta-btn {
      display: inline-block; padding: 1rem 2.5rem; border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy); font-weight: 600; font-size: 1rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(201,169,98,0.45); }

    /* Footer */
    footer {
      padding: 2rem 0; background: #081528; color: rgba(255,255,255,0.5);
      text-align: center; font-size: 0.85rem;
    }
    footer a { color: var(--gold); }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
