/* ============================================================
   EIVAA HOMESS — Project Detail Page · project.css
   Light Luxury Theme · No Dark Modes
   ============================================================ */

/* ── PAGE BASE ── */
.project-page {
  background: #F9F8F6;
  color: #1A1A1A;
}

/* Fix: global style.css sets #site-header opacity:0 expecting a preloader JS.
   This page has no preloader, so force the header visible immediately. */
.project-page #site-header {
  opacity: 1 !important;
}

/* ─────────────────────────────────────────────────
   HEADER (Transparent → Solid on scroll)
───────────────────────────────────────────────── */
.pd-header {
  background: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 200;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.pd-header.is-scrolled {
  background: rgba(249, 248, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.08);
}

/* Keep header nav links charcoal on this light page */
.project-page .nav-link,
.project-page .nav-logo a {
  color: #ffffff;
  mix-blend-mode: normal;
  transition: color 0.4s ease;
}

.pd-header.is-scrolled .nav-link {
  color: #1A1A1A;
}

/* ─────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────── */
#pd-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #1A1A1A;
}

.pd-hero-img-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.pd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
}

/* Hero video — layered above the poster image, revealed once it plays */
.pd-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.pd-hero-video.is-active {
  opacity: 1;
}

.pd-hero-overlay {
  position: absolute;
  inset: 0;
  /* Warm gradient — readable bottom-left text, airy top */
  background: linear-gradient(
    160deg,
    rgba(10, 8, 6, 0.0) 0%,
    rgba(10, 8, 6, 0.0) 40%,
    rgba(10, 8, 6, 0.55) 75%,
    rgba(10, 8, 6, 0.80) 100%
  );
}

/* Luxury Back Button */
.pd-back-btn {
  position: absolute;
  top: 130px; /* Below the global header */
  left: 64px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(249, 248, 246, 0.75);
  text-decoration: none;
  z-index: 10;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInCue 1s ease 1s forwards; /* Re-use fade-in anim */
}

.pd-back-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.pd-back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(249, 248, 246, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.pd-back-btn:hover {
  color: #F9F8F6;
  transform: translateX(-4px);
}

.pd-back-btn:hover .pd-back-arrow {
  background: rgba(249, 248, 246, 0.1);
  border-color: rgba(249, 248, 246, 0.5);
}

.pd-hero-content {
  position: absolute;
  bottom: 132px; /* clears the fixed SOUND toggle at bottom-left */
  left: 64px;
  right: 64px;
  z-index: 2;
}

.pd-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(249, 248, 246, 0.7);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(24px);
}

.pd-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #F9F8F6;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
}

.pd-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  color: rgba(249, 248, 246, 0.75);
  letter-spacing: 0.01em;
  max-width: 520px;
  opacity: 0;
  transform: translateY(24px);
}

/* Scroll Cue */
.pd-scroll-cue {
  position: absolute;
  bottom: 40px;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInCue 1s ease 1.8s forwards;
}

.pd-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(249, 248, 246, 0.4);
  animation: scrollPulse 2s ease-in-out 1.8s infinite;
}

.pd-scroll-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(249, 248, 246, 0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

@keyframes fadeInCue {
  to { opacity: 1; }
}

/* ─────────────────────────────────────────────────
   STICKY IN-PAGE SUBNAV
───────────────────────────────────────────────── */
.pd-subnav {
  position: sticky;
  top: 63px; /* Scrolled header height on desktop */
  z-index: 100;
  background: rgba(249, 248, 246, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.pd-subnav::-webkit-scrollbar {
  display: none;
}

.pd-subnav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 64px;
  height: 56px;
}

.pd-subnav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  text-decoration: none;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.pd-subnav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: #1A1A1A;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.87, 0, 0.13, 1);
}

.pd-subnav-link.active,
.pd-subnav-link:hover {
  color: #1A1A1A;
}

.pd-subnav-link.active::after {
  transform: scaleX(1);
}

/* ─────────────────────────────────────────────────
   MAIN CONTENT — BASE
───────────────────────────────────────────────── */
.pd-main {
  background: #F9F8F6;
}

.pd-section {
  padding: 120px 64px;
}

.pd-section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 20px;
  display: block;
}

.pd-center {
  text-align: center;
}

/* ─────────────────────────────────────────────────
   OVERVIEW SECTION (Sticky Left / Scroll Right)
───────────────────────────────────────────────── */
.pd-overview-section {
  padding-top: 100px;
  padding-bottom: 0;
}

.pd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.pd-overview-left {
  position: sticky;
  top: 188px; /* 72px header + 56px subnav + 60px padding */
  padding-bottom: 120px;
}

.pd-overview-left-inner {
  max-width: 480px;
}

.pd-story-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  margin-bottom: 28px;
}

.pd-story-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 40px;
}

/* Stats */
.pd-stats-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding-top: 32px;
}

.pd-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.pd-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
}

.pd-stat-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
}

/* Right column */
.pd-overview-right {
  padding-bottom: 120px;
}

/* Key Highlights */
.pd-highlights-wrap {
  margin-bottom: 60px;
}

.pd-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 300;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.5;
}

.pd-highlights-list li::before {
  display: none;
}

/* Overview editorial image */
.pd-overview-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}

.pd-overview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pd-overview-img-wrap:hover .pd-overview-img {
  transform: scale(1.04);
}

/* ─────────────────────────────────────────────────
   AMENITIES SECTION
───────────────────────────────────────────────── */
.pd-amenities-section {
  background: #F2F0EC;
}

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

.pd-community-wrap {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.pd-community-text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26, 26, 26, 0.75);
  letter-spacing: 0.01em;
}

.pd-amenities-divider {
  width: 100%;
  height: 1px;
  background: rgba(26, 26, 26, 0.12);
  margin-bottom: 60px;
}

.pd-amenities-header {
  margin-bottom: 24px;
}

.pd-amenities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.pd-amenities-grid li {
  padding: 24px 32px 24px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
  transition: color 0.3s ease;
}

.pd-amenities-grid li:hover {
  color: #1A1A1A;
}

/* ─────────────────────────────────────────────────
   LOCATION SECTION
───────────────────────────────────────────────── */
.pd-location-section {
  background: #F9F8F6;
}

.pd-location-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pd-location-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.pd-location-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
}

.pd-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pd-location-tag {
  padding: 8px 20px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
  border-radius: 100px;
}

.pd-location-map-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 450px;
}

.pd-location-map-col iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 450px;
  display: block;
  border-radius: 4px;
}

.pd-map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #E8E6E1;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.pd-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(26, 26, 26, 0.04) 40px,
    rgba(26, 26, 26, 0.04) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(26, 26, 26, 0.04) 40px,
    rgba(26, 26, 26, 0.04) 41px
  );
}

.pd-map-pin {
  position: relative;
  z-index: 1;
  animation: pinBounce 2.5s ease-in-out infinite;
}

.pd-map-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
  position: relative;
  z-index: 1;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─────────────────────────────────────────────────
   VIRTUAL TOUR — 50/50 SPLIT
───────────────────────────────────────────────── */
.pd-tour-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}

.pd-tour-left {
  position: relative;
  overflow: hidden;
}

.pd-tour-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pd-tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowPan 18s ease-in-out infinite alternate;
}

@keyframes slowPan {
  0%   { transform: scale(1.1) translateX(0%); }
  100% { transform: scale(1.1) translateX(-4%); }
}

.pd-tour-right {
  background: #F2F0EC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 72px;
}

.pd-tour-content {
  max-width: 440px;
}

.pd-tour-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.pd-tour-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 48px;
}

/* Magnetic CTA button */
.pd-tour-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A1A1A;
  transition: transform 0.3s ease;
}

.pd-tour-btn-text {
  position: relative;
  z-index: 1;
  padding-bottom: 4px;
}

.pd-tour-btn-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1A1A1A;
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}

.pd-tour-btn:hover .pd-tour-btn-line {
  transform: scaleX(1.08);
}

.pd-tour-btn:hover {
  color: rgba(26, 26, 26, 0.7);
}

/* ─────────────────────────────────────────────────
   DOWNLOAD BROCHURE
───────────────────────────────────────────────── */
.pd-brochure-section {
  /* dark close to the page — same treatment as .pd-enquiry-section below */
  background: #1A1A1A;
}

.pd-brochure-section .pd-section-eyebrow {
  color: rgba(249, 248, 246, 0.4);
}

.pd-brochure-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

.pd-brochure-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 400;
  color: #F9F8F6;
  margin: 12px 0 24px;
}

.pd-brochure-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(249, 248, 246, 0.65);
  max-width: 500px;
  margin: 0 auto 48px;
}

.pd-brochure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  background: transparent;
  color: #F9F8F6;
  border: 1px solid rgba(249, 248, 246, 0.3);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.pd-brochure-btn:hover {
  background: #F9F8F6;
  color: #1A1A1A;
}

.pd-brochure-btn-text {
  position: relative;
}

/* ─────────────────────────────────────────────────
   ENQUIRY SECTION
───────────────────────────────────────────────── */
.pd-enquiry-section {
  background: #1A1A1A;
  text-align: center;
}

.pd-enquiry-section .pd-section-eyebrow {
  color: rgba(249, 248, 246, 0.4);
}

.pd-enquiry-inner {
  max-width: 860px;
  margin: 0 auto;
}

.pd-enquiry-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: #F9F8F6;
  margin-bottom: 24px;
}

.pd-enquiry-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(249, 248, 246, 0.55);
  max-width: 600px;
  margin: 0 auto 56px;
}

.pd-enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 56px;
  border: 1px solid rgba(249, 248, 246, 0.35);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #F9F8F6;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease;
}

.pd-enquiry-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F9F8F6;
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(0.87, 0, 0.13, 1);
}

.pd-enquiry-btn:hover::before {
  transform: translateY(0);
}

.pd-enquiry-btn:hover {
  color: #1A1A1A;
}

.pd-enquiry-btn-text {
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────
   FOOTER — override background for dark footer below light page
───────────────────────────────────────────────── */
.project-page #site-footer {
  background: #F2F0EC;
}



/* ─────────────────────────────────────────────────
   VIRTUAL TOUR MODAL (Luxury Dummy overlay)
───────────────────────────────────────────────── */
.vt-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.vt-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vt-modal-bg {
  position: absolute;
  inset: 0;
  background: #1A1A1A; /* Dark immersion */
  z-index: 1;
}

/* Close button - Top Right */
.vt-close-btn {
  position: absolute;
  top: 40px;
  right: 48px;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(249, 248, 246, 0.15);
  border-radius: 40px;
  padding: 16px 20px;
  color: #F9F8F6;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s, background 0.3s ease;
}

.vt-close-btn:hover {
  background: rgba(26, 26, 26, 0.8);
}

.vt-modal.is-active .vt-close-btn {
  opacity: 1;
  transform: translateY(0);
}

.vt-close-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.vt-close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
}

.vt-close-btn:hover .vt-close-icon {
  transform: rotate(90deg);
}

/* Loading State */
.vt-loading-state {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #1A1A1A;
  transition: opacity 0.5s ease;
}

.vt-spinner {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(249, 248, 246, 0.1);
  border-top-color: #C9A96E;
  border-radius: 50%;
  animation: vtSpin 1s linear infinite;
}

@keyframes vtSpin {
  100% { transform: rotate(360deg); }
}

.vt-loading-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249, 248, 246, 0.6);
}

/* Image Wrapper (Simulated Tour) */
.vt-image-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  background: #1A1A1A;
  overflow: hidden;
}

.vt-modal.is-video-ready .vt-loading-state {
  opacity: 0;
  pointer-events: none;
}

.vt-modal.is-video-ready .vt-image-wrapper {
  opacity: 1;
  transform: scale(1);
}

.vt-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Room Navigation Menu */
.vt-nav-menu {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(249, 248, 246, 0.1);
  border-radius: 40px;
  padding: 8px;
  display: flex;
  gap: 8px;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.6s ease 0.5s, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.vt-modal.is-active .vt-nav-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vt-room-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249, 248, 246, 0.6);
  padding: 14px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vt-room-btn:hover {
  color: #F9F8F6;
}

.vt-room-btn.active {
  background: #F9F8F6;
  color: #1A1A1A;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────
   RESPONSIVE — TABLET (1024px)
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pd-back-btn {
    left: 40px;
  }

  .pd-subnav {
    top: 57px; /* Scrolled header height for tablet */
  }

  .pd-section {
    padding: 80px 40px;
  }

  .pd-hero-content {
    left: 40px;
    right: 40px;
    bottom: 116px;
  }

  .pd-overview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pd-overview-left {
    position: static;
  }

  .pd-location-inner {
    grid-template-columns: 1fr;
  }

  .pd-tour-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pd-tour-left {
    height: 50vh;
    position: relative;
  }

  .pd-tour-right {
    padding: 60px 40px;
  }
}

@media (max-width: 900px) {
  .pd-subnav {
    top: 56px; /* Scrolled header height for <900px */
  }
}

@media (max-width: 768px) {
  .pd-back-btn {
    top: 96px;
    left: 24px;
  }

  .pd-subnav {
    top: 53px; /* Scrolled header height for mobile */
  }

  .pd-subnav-inner {
    padding: 0 20px;
    gap: 0;
  }

  .pd-subnav-link {
    padding: 0 14px;
    font-size: 10px;
  }

  .pd-section {
    padding: 60px 24px;
  }

  .pd-hero-content {
    left: 24px;
    right: 24px;
    bottom: 104px;
  }

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

}

@media (max-width: 520px) {
  .pd-subnav {
    top: 53px; /* Scrolled header height for mobile */
  }

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


  .pd-scroll-cue {
    display: none;
  }
}
