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

:root {
  --teal: #2BBCBC;
  --teal-dark: #1E9E9E;
  --teal-deep: #178585;
  --dark: #1A1D23;
  --dark-card: #22262E;
  --dark-surface: #282C35;
  --dark-lighter: #2E333D;
  --text: #FFFFFF;
  --text-muted: #A0A7B5;
  --text-soft: #C5CAD4;
  --gold: #D4A853;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Outfit', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(26, 29, 35, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--teal);
  color: white;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap .hero-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26,29,35,0.25) 0%,
      rgba(26,29,35,0.15) 40%,
      rgba(26,29,35,0.55) 70%,
      rgba(26,29,35,0.92) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,188,188,0.15);
  border: 1px solid rgba(43,188,188,0.35);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-address {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  animation: fadeUp 0.8s var(--ease-out) 0.35s both;
}

.hero-city {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero-price {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--teal);
  animation: fadeUp 0.8s var(--ease-out) 0.65s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.8s var(--ease-out) 1s both;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ─── STATS BAR ─── */
.stats-bar {
  position: relative;
  z-index: 3;
  background: var(--dark-card);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

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

.stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(43,188,188,0.1);
  color: var(--teal);
  flex-shrink: 0;
}

.stat-icon svg { width: 20px; height: 20px; }

.stat-info { text-align: left; }

.stat-value {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─── SECTION TITLES ─── */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.2;
}

.section-title-line {
  width: 50px;
  height: 2px;
  background: var(--teal);
  margin: 20px auto 0;
  border-radius: 1px;
}

/* ─── OVERVIEW SECTION ─── */
.overview {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.overview-description p, .video-section-description {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.video-section-description {
  text-align: center;
}

.overview-features {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
}

.overview-features h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.feature-list { list-style: none; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}

.feature-list li:last-child { border-bottom: none; }

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(43,188,188,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-check svg { width: 12px; height: 12px; color: var(--teal); }

/* ─── GALLERY ─── */
.gallery-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.gallery-section .section-title { padding: 0 40px; }

.gallery-track-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 auto;
  width: 420px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.25));
  pointer-events: none;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0 40px;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.gallery-counter {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  min-width: 60px;
  justify-content: center;
}

.gallery-counter .current { color: white; font-weight: 600; }

/* ─── VIDEO SECTION ─── */
.video-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--dark-card);
  transition: opacity 0.4s;
}

.video-placeholder.hidden { opacity: 0; pointer-events: none; }

.video-placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.play-btn {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 0 0 rgba(43,188,188,0.3);
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 16px rgba(43,188,188,0.15);
}

.play-btn svg { width: 28px; height: 28px; margin-left: 3px; }

/* ─── FLOOR PLAN SECTION ─── */
.floorplan-section {
  padding: 80px 40px;
  background: var(--dark-card);
}

.floorplan-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--dark);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.floorplan-tab {
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  font-family: var(--ff-body);
}

.floorplan-tab.active {
  background: var(--teal);
  color: white;
}

.floorplan-tab:hover:not(.active) { color: white; }

.floorplan-display {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 16px;
  padding: 40px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.floorplan-display img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

.floorplan-panel { display: none; }
.floorplan-panel.active { display: flex; justify-content: center; }

/* ─── 3D TOUR ─── */
.tour-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
}

.tour-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.tour-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark-card);
  cursor: pointer;
  transition: opacity 0.4s;
}

.tour-placeholder.hidden { opacity: 0; pointer-events: none; }

.tour-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43,188,188,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: transform 0.3s;
}

.tour-placeholder:hover .tour-icon { transform: scale(1.1); }

.tour-placeholder span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── DISCLOSURE / CONTACT FORM ─── */
.contact-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(43,188,188,0.06) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-header {
  text-align: center;
  margin-bottom: 36px;
}

.contact-header h2 {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: white;
  font-family: var(--ff-body);
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
}

/* ─── CTA BANNERS ─── */
.cta-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: flex-end;
}

.cta-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cta-card:hover {color: #fff;}
.cta-card:hover .cta-card-img { transform: scale(1.05); }

.cta-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,29,35,0.9) 0%, rgba(26,29,35,0.3) 60%, transparent);
}

.cta-card-content {
  position: relative;
  z-index: 1;
  padding: 36px;
}

.cta-card-content h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap 0.3s;
}

.cta-link:hover { gap: 12px; }

.cta-link svg { width: 16px; height: 16px; }

/* ─── FOOTER ─── */
.footer {
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.footer-logos img { height: 28px; }

.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

.footer-text a { color: rgba(255,255,255,0.5); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ─── HAMBURGER MENU ─── */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  position: relative;
  transition: background 0.2s;
}

.nav-hamburger span::before,
.nav-hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-hamburger span::before { top: -7px; }
.nav-hamburger span::after { top: 7px; }

.nav-hamburger.active span { background: transparent; }
.nav-hamburger.active span::before { top: 0; transform: rotate(45deg); }
.nav-hamburger.active span::after { top: 0; transform: rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--dark);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  border-left: 1px solid rgba(255,255,255,0.06);
  overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.nav-drawer-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.nav-drawer a:hover,
.nav-drawer a:active { color: var(--teal); }

.nav-drawer-cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 14px 24px;
  background: var(--teal);
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─── MOBILE STICKY CTA ─── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  gap: 10px;
}

.mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mobile-sticky-call {
  background: rgba(255,255,255,0.08);
  color: white;
}

.mobile-sticky-disclosure {
  background: var(--teal);
  color: white;
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }
  .nav-drawer-backdrop { display: block; }

  .hero-content { padding: 0 24px 60px; }
  .hero-scroll-indicator { display: none; }

  .overview { padding: 60px 24px; }
  .overview-grid { grid-template-columns: 1fr; gap: 36px; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 22px 16px;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .gallery-item { width: 320px; height: 240px; }

  .cta-grid { grid-template-columns: 1fr; }
  .cta-card { height: 260px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 24px; }
  .contact-section { padding: 60px 24px; }

  .video-section, .tour-section, .cta-section { padding: 60px 24px; }
  .gallery-section { padding: 60px 0; }
  .gallery-section .section-title { padding: 0 24px; }
  .floorplan-section { padding: 60px 24px; }
}

/* Mobile */
@media (max-width: 600px) {
  .nav { padding: 12px 16px; }
  .nav-logo-img { height: 28px; }
  .nav.scrolled { padding: 10px 16px; }

  .hero { min-height: 100svh; min-height: 600px; }
  .hero-content { padding: 0 20px 48px; }
  .hero-badge { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }
  .hero-city { margin-bottom: 20px; letter-spacing: 2px; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item {
    flex: 1 1 50%;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 18px 12px;
  }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 11px; }

  .section-title { margin-bottom: 32px; }
  .section-title h2 { font-size: 28px; }
  .section-title-label { font-size: 11px; letter-spacing: 2.5px; }

  .overview { padding: 48px 20px; }
  .overview-description p { font-size: 15px; line-height: 1.75; }
  .overview-features { padding: 28px 20px; border-radius: 12px; }
  .overview-features h3 { font-size: 20px; }
  .feature-list li { font-size: 14px; padding: 12px 0; gap: 12px; }

  .gallery-section { padding: 48px 0; }
  .gallery-section .section-title { padding: 0 20px; }
  .gallery-track { padding: 0 20px; gap: 12px; }
  .gallery-item { width: calc(85vw); height: 220px; border-radius: 10px; }
  .gallery-controls { margin-top: 20px; }
  .gallery-btn { width: 42px; height: 42px; }

  .video-section { padding: 48px 20px; }
  .video-wrapper { border-radius: 12px; }
  .play-btn { width: 64px; height: 64px; }
  .play-btn svg { width: 22px; height: 22px; }

  .floorplan-section { padding: 48px 20px; }
  .floorplan-tabs { margin-bottom: 28px; }
  .floorplan-tab { padding: 10px 24px; font-size: 13px; }
  .floorplan-display { padding: 24px 16px; border-radius: 12px; min-height: 280px; }
  .floorplan-display img { max-height: 350px; }

  .tour-section { padding: 48px 20px; }
  .tour-wrapper { border-radius: 12px; }
  .tour-icon { width: 56px; height: 56px; }
  .tour-placeholder span { font-size: 12px; }

  .contact-section { padding: 48px 16px; }
  .contact-card { padding: 28px 20px; border-radius: 16px; }
  .contact-header h2 { font-size: 26px; }
  .contact-header p { font-size: 14px; }
  .form-group label { font-size: 11px; }
  .form-group input,
  .form-group textarea { padding: 13px 16px; font-size: 16px; border-radius: 8px; }
  /* 16px font-size prevents iOS zoom on input focus */
  .form-submit { padding: 15px; font-size: 14px; border-radius: 8px; }

  .cta-section { padding: 48px 20px; }
  .cta-grid { gap: 16px; }
  .cta-card { height: 240px; border-radius: 12px; }
  .cta-card-content { padding: 24px; }
  .cta-card-content h3 { font-size: 22px; }
  .cta-card-content p { font-size: 13px; }
  

  .footer { padding: 32px 20px 100px; } /* Extra bottom padding for sticky CTA */
  .footer-logos span { font-size: 14px; }
  .footer-text { font-size: 11px; }

  /* Lightbox mobile */
  .lightbox img { max-width: 96vw; max-height: 75vh; border-radius: 4px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  /* Show mobile sticky CTA */
  .mobile-sticky-cta { display: flex; }
}

/* ─── ANIMATION ON SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}