/* ── Unified Section Subtitle & Tagline System ── */
.section-subtitle,
.pt-header-desc,
.trending-subtitle,
.connect-subtitle,
.features-tagline,
.why-desc,
.why-sticky-text,
.svc-v-desc {
  font-family: var(--sans) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: var(--white) !important;
  letter-spacing: 0.01em !important;
}

/* Marquee Ticker */
.marquee-wrap {
  overflow: hidden;
  background: var(--black-card);
  padding: 20px 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  z-index: 25;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  padding: 0 60px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  font-family: var(--sans);
  font-weight: 300;
  display: flex;
  align-items: center;
}
.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  margin-right: 16px;
  box-shadow: 0 0 10px var(--cyan);
}

/* Floating Section */
#portal-container {
  position: relative;
  overflow: hidden;
  background: var(--page-bg);
  isolation: isolate;
}

#floating-section {
  position: absolute;
  top: -1%; /* Oversize to hide edges */
  left: -1%;
  width: 102%;
  height: 102vh;
  overflow: hidden;
  padding: 120px 48px;
  display: flex;
  align-items: center;
  background: transparent !important; 
  z-index: 10;
  pointer-events: none;
  border: none !important;
  outline: none !important;
}

.fog-wrap {
  position: absolute;
  inset: -5%; /* Oversize even more */
  z-index: 1;
  pointer-events: none;
  opacity: 0; 
  /* Gradual falloff all the way to the edge — a hard cutoff to transparent
     left raw black hero background showing through in patchy blotches
     wherever no cloud PNG happened to cover it. */
  background: radial-gradient(circle at center, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 55%, rgba(255,255,255,0.15) 85%, transparent 100%);
  mix-blend-mode: screen;
}

.fog-layer {
  position: absolute;
  /* Removed heavy CSS blur(100px), using softer gradient instead */
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.cloud-asset {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  opacity: 0; 
  /* GSAP takes full ownership of transforms — no CSS transform here */
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0); /* GPU layer without conflicting translate — GSAP overrides on init */
}

.ca-1, .ca-2, .ca-3, .ca-4 {
  width: 1200px; height: 1000px;
  top: 50%; left: 50%;
  /* No CSS transform here — GSAP sets xPercent/yPercent on init to prevent snap */
}

.ca-1 { background-image: url('../assets/images/Clouds%201.png'); }
.ca-2 { background-image: url('../assets/images/Clouds%202.png'); }
.ca-3 { background-image: url('../assets/images/Clouds%203.png'); }
.ca-4 { background-image: url('../assets/images/Clouds%201.png'); }

.fl-1 { width: 1000px; height: 800px; top: -10%; left: -10%; opacity: 0.4; }
.fl-2 { width: 1200px; height: 1000px; bottom: -20%; right: -10%; opacity: 0.3; }

.float-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 999;
  width: 100%;
  pointer-events: none;
  text-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0; /* Hidden initially */
}

.vision-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 28px); /* Refined size */
  font-weight: 400;
  letter-spacing: 0.3em; /* Slightly more space for elegance */
  line-height: 1.4;
  color: #222;
  margin-bottom: 0px;
}

.vision-luxury {
  font-family: var(--script);
  font-size: clamp(80px, 12vw, 150px);
  font-style: italic; /* Specifically use the italic variant */
  font-weight: 100; /* Decreased boldness */
  -webkit-font-smoothing: antialiased; /* Renders text thinner/sharper */
  color: var(--cyan); /* Updated from golden to theme color */
  display: block;
  margin-top: -20px;
  opacity: 1;
}

.float-images {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.float-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05); /* Softer shadow */
  will-change: transform, opacity;
  opacity: 0; /* Hidden initially */
}

.float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fi-large {
  width: 35%; /* Shrunk from 45% */
  aspect-ratio: 16/10;
  bottom: 8%;
  left: 3%;
  z-index: 3;
}

.fi-medium {
  width: 25%;
  aspect-ratio: 4/3;
  top: 10%;
  right: 10%;
  z-index: 2;
}

.fi-small {
  width: 8%;
  aspect-ratio: 1/1.2;
  top: 20%;
  left: 30%;
  z-index: 1;
}

.fi-4 {
  width: 12%;
  aspect-ratio: 3/4;
  top: 40%;
  left: 5%;
  z-index: 4;
}

.fi-5 {
  width: 30%;
  aspect-ratio: 16/9;
  bottom: 12%;
  right: 5%;
  z-index: 3;
}

.fi-6 {
  width: 10%;
  aspect-ratio: 1/1;
  top: 15%;
  left: 55%;
  z-index: 2;
}

@media (max-width: 768px) {
  .fi-large { width: 80%; left: 10%; bottom: 10%; }
  .fi-medium { width: 50%; top: 5%; right: 5%; }
  .fi-small, .fi-4, .fi-6 { display: none; }
  .fi-5 { width: 70%; bottom: 5%; right: 5%; }
  .vision-title { font-size: 18px; }
  .vision-luxury { font-size: 50px; }
}

/* Video Mask Sequence */
#video-mask-container {
  position: absolute;
  top: 0;
  transform: translateY(100%);
  will-change: transform;
  left: 0;
  width: 100%;
  height: 101vh; /* Slightly taller to prevent bottom gaps */
  background: #ffffff;
  z-index: 20;
  overflow: hidden;
  margin-top: -2px; /* Overlap to prevent subpixel lines */
}

.showcase-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.showcase-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform-origin: center center;
}

.video-mask-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 21;
  opacity: 0; /* Mask starts hidden, revealing raw video */
}

.video-mask-overlay svg {
  width: 100%;
  height: 100%;
}

/* Content inside Video Mask Container */
.mask-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 36vh 48px 40px;
  z-index: 22;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.features-intro {
  max-width: 1150px;
  margin: 0 auto 30px;
}

.features-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.features-title-main {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.features-title-main .accent-dot {
  color: var(--cyan);
  font-size: 1.4em;
  line-height: 0;
  display: inline-block;
  vertical-align: baseline;
}

.features-tagline {
  max-width: 1150px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto 30px;
  position: relative;
}

/* Glowing background blobs for glassmorphism refraction */
.features-grid::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76, 203, 212, 0.22) 0%, rgba(76, 203, 212, 0) 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.features-grid::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(7, 104, 117, 0.18) 0%, rgba(7, 104, 117, 0) 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.feature-card {
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(232, 238, 233, 0.25) 100%);
  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 
    0 15px 35px rgba(10, 139, 155, 0.08), 
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.5s var(--ease-luxury), border-color 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury), background-color 0.5s var(--ease-luxury);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(232, 238, 233, 0.45) 100%);
  border-color: rgba(76, 203, 212, 0.6);
  box-shadow: 
    0 30px 60px rgba(10, 139, 155, 0.15), 
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--cyan);
  margin-bottom: 16px;
  display: inline-block;
  opacity: 0.95;
  transition: transform 0.4s var(--ease-luxury);
}

.feature-card:hover .feature-num {
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--white-soft);
}

.features-cta {
  text-align: center;
}

.features-cta .btn-gold {
  border-radius: 100px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
  color: var(--black);
  box-shadow: 0 10px 25px rgba(10, 139, 155, 0.2);
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury), gap 0.4s var(--ease-luxury);
}

.features-cta .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 139, 155, 0.35);
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 100%);
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* Video Section */
.video-scroll-wrap {
  height: 300vh;
  position: relative;
}

#video-section {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-section video,
.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fallback {
  background: url('https://images.unsplash.com/photo-1613490908578-944f21db593e?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.video-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.video-content h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(40px);
}

.video-content h2 em {
  color: var(--cyan);
}

.video-content p {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--white-muted);
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  text-transform: uppercase;
}

/* Carousel Section */
#carousel-section {
  padding: 160px 0;
  background: var(--black-card);
}

.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 48px 80px;
}

.carousel-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
}

.carousel-counter {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.4;
}

.carousel-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.carousel-wrap::-webkit-scrollbar { display: none; }

.carousel-track {
  display: flex;
  gap: 32px;
  padding: 0 48px;
  width: max-content;
}

.carousel-card {
  width: clamp(300px, 40vw, 520px);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.card-img {
  height: clamp(380px, 48vw, 640px);
  overflow: hidden;
  position: relative;
  background: var(--black-soft);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.carousel-card:hover .card-img img {
  transform: scale(1.1);
}

.card-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(64,192,208,0.3);
  padding: 8px 18px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.card-body { padding: 32px 0 16px; }

.card-body h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.card-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 90%;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 24px;
  border-bottom: 1px solid rgba(64,192,208,0.2);
  padding-bottom: 6px;
  transition: gap 0.3s, border-color 0.3s, color 0.3s;
}

.card-link::after { content: '→'; }
.card-link:hover { gap: 20px; color: var(--cyan-light); border-color: var(--cyan); }

/* Map Section */
#map-section {
  padding: 160px 48px;
  background: var(--black-soft);
  display: flex;
  gap: 100px;
  align-items: center;
}

.map-text { flex: 0 0 35%; }

.map-container {
  flex: 1;
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 480px;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  border: 1px solid var(--black-border);
  overflow: hidden;
}

.pin-dot {
  width: 14px;
  height: 14px;
  background: var(--cyan);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--cyan);
  position: relative;
}

.pin-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.pin-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--black);
  color: var(--cyan);
  border: 1px solid var(--teal);
  padding: 6px 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.map-pin:hover .pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.map-pin {
  position: absolute;
  cursor: pointer;
}

.p-1 { top: 40%; left: 50%; }
.p-2 { top: 60%; left: 30%; }
.p-3 { top: 75%; left: 65%; }

@media (max-width: 1024px) {
  #map-section { flex-direction: column; gap: 60px; }
  .map-text { flex: none; text-align: center; }
  .eyebrow { justify-content: center; }
}

/* Philosophy Section */
#philosophy-section {
  padding: 180px 48px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 900px;
  line-height: 1.3;
  margin-bottom: 100px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 1000px;
}

.stat-item { flex: 1; }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 16px;
}

.stat-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--teal), transparent);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .stats-grid { flex-direction: column; gap: 40px; }
  .stat-divider { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--teal), transparent); align-self: center; }
}

/* ── Refined Trending 3D Gallery Portal ──────────────── */
#trending-section {
  background: radial-gradient(circle at center, #E8F4F5 0%, #F5F8F8 100%) !important;
}

#trending-section .perspective-grid {
  opacity: 0.25 !important;
}

#trending-section .perspective-grid svg line {
  stroke: var(--cyan) !important;
  stroke-opacity: 0.4;
  stroke-width: 0.15;
}

#trending-section .perspective-grid svg rect {
  stroke: var(--teal) !important;
  stroke-opacity: 0.3;
  stroke-width: 0.1;
}

.trending-hero-title {
  font-family: var(--sans);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white) !important;
  text-shadow: 0 4px 12px rgba(10, 139, 155, 0.08);
}

.trending-subtitle span {
  color: var(--cyan) !important;
  text-shadow: 0 0 15px rgba(10, 139, 155, 0.2);
}

.trending-cta a {
  background: rgba(10, 139, 155, 0.06) !important;
  color: var(--cyan) !important;
  border: 1px solid rgba(10, 139, 155, 0.2) !important;
  box-shadow: 0 0 20px rgba(10, 139, 155, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-luxury) !important;
}

.trending-cta a:hover {
  background: var(--cyan) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 30px rgba(10, 139, 155, 0.3) !important;
  transform: scale(1.05) translateY(-2px);
}

#trending-section .float-img {
  border: 1px solid rgba(10, 139, 155, 0.18);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(10, 139, 155, 0.06), 0 0 30px rgba(10, 139, 155, 0.02);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  padding: 12px; /* Luxury frame mount */
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  transform-style: preserve-3d;
}

#trending-section .float-img:hover {
  border-color: rgba(10, 139, 155, 0.4);
  box-shadow: 0 25px 60px rgba(10, 139, 155, 0.15), 0 0 40px rgba(10, 139, 155, 0.08);
}

#trending-section .float-img img {
  border-radius: 10px;
  transition: transform 0.8s var(--ease-luxury);
}

#trending-section .float-img:hover img {
  transform: scale(1.06);
}

/* Exhibit Labels overlay inside 3D cards */
.card-exhibit-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 139, 155, 0.12);
  backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  opacity: 0.95;
  transform: translateZ(20px); /* Popping out in 3D */
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(10, 139, 155, 0.08);
}

.card-exhibit-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0E2224 !important; /* Force high contrast dark color */
}

.card-exhibit-num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--cyan) !important;
  font-weight: 600;
}

/* ── Amenities Sanctuary ─────────────────── */
#amenities-section {
  padding: 120px 0;
  background-color: var(--page-bg);
  position: relative;
  z-index: 10;
}

#amenities-section .section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.amenities-header {
  margin-bottom: 72px;
  text-align: left;
}

.amenities-header .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: block;
}

.amenities-header h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.amenities-header h2 em {
  font-style: italic;
}

.amenities-header .section-desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-soft);
  max-width: 600px;
  margin: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.amenity-card {
  position: relative;
  background: var(--black-card);
  border-radius: 16px;
  border: 1px solid var(--black-border);
  overflow: hidden;
  padding: 16px;
  transition: transform 0.6s var(--ease-luxury), border-color 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 139, 155, 0.3);
  box-shadow: 0 30px 60px rgba(10, 139, 155, 0.08);
}

.amenity-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

.amenity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.amenity-card:hover .amenity-img {
  transform: scale(1.08);
}

.amenity-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,34,36,0) 60%, rgba(14,34,36,0.3) 100%);
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 1;
}

.amenity-card:hover .amenity-glow {
  opacity: 1;
}

.amenity-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 4px 8px;
}

.amenity-num {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}

.amenity-name {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.amenity-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #amenities-section .section-container {
    padding: 0 24px;
  }
}

/* ── Section General Layout ──────────────── */
.section-padding {
  padding: 140px 0;
  background-color: var(--page-bg);
  position: relative;
  z-index: 10;
}

.section-container {
  max-width: clamp(1080px, 88vw, 1760px);
  margin: 0 auto;
  padding: 0 48px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 80px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-centered .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: block;
}

.section-header-centered h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.section-header-centered h2 em,
.connect-info h2 em,
.features-title-main em {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic;
  font-weight: 300;
  color: var(--cyan);
  font-size: 1.05em;
  text-transform: none;
  display: inline-block;
  transform: none;
  margin-left: 6px;
  margin-right: 6px;
}

.section-header-centered .section-subtitle {
  margin: 0;
}

/* ── Explore Prime Cities (Feature Panel) ────────────────── */
#cities-section {
  background-color: var(--page-bg);
  overflow: hidden;
  padding: 0;
}

.cities-feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
}

/* Left: Feature Image */
.cities-feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.cities-feature-img-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

/* Image is absolutely positioned so its natural size never drives layout */
.cities-feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: opacity;
}

.cities-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 26, 28, 0.92) 0%,
    rgba(7, 26, 28, 0.45) 42%,
    rgba(7, 26, 28, 0.08) 68%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.cities-feature-num {
  position: absolute;
  top: 36px;
  left: 44px;
  font-family: var(--serif);
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  letter-spacing: -0.04em;
}

.cities-feature-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px 64px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cities-feature-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(10, 139, 155, 0.82);
  backdrop-filter: blur(14px);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  width: fit-content;
  transition: background 0.4s var(--ease-luxury);
}

.cities-feature-tag.is-soon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.cities-feature-name-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cities-feature-city-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  display: block;
}

.cities-feature-name {
  font-family: var(--script) !important;
  font-style: italic !important;
  font-weight: 100 !important;
  font-size: clamp(52px, 5.8vw, 86px);
  color: #ffffff !important;
  line-height: 0.88;
  display: block !important;
  -webkit-font-smoothing: antialiased;
}

.cities-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 4;
}

.cities-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  width: 25%;
  transition: width 0.65s var(--ease-luxury);
  border-radius: 0 2px 2px 0;
}

/* Right: City List Panel */
.cities-list-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: 80px 80px 80px 80px;
  background: var(--page-bg);
  position: relative;
}

.cities-list-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--black-border) 25%, var(--black-border) 75%, transparent);
}

.cities-list-header {
  display: flex;
  flex-direction: column;
}

.cities-list-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cities-list-header h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: var(--cyan) !important;
  font-size: 1.05em !important;
  text-transform: none !important;
  display: inline-block !important;
  transform: none !important;
  margin-left: 4px !important;
}

.cities-list-header .section-subtitle {
  max-width: 420px;
  margin: 0;
}

/* List */
.cities-list {
  display: flex;
  flex-direction: column;
}

.city-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--black-border);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.5s var(--ease-luxury);
}

.city-list-item:first-child {
  border-top: 1px solid var(--black-border);
}

.city-list-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--cyan);
  transition: width 0.6s var(--ease-luxury);
  z-index: 2;
}

.city-list-item.active::after,
.city-list-item:hover::after {
  width: 100%;
}

.city-list-item.active {
  padding-left: 10px;
}

.city-list-item:hover:not(.active) {
  padding-left: 6px;
}

.cli-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white-muted);
  opacity: 0.6;
  width: 40px;
  flex-shrink: 0;
  transition: color 0.4s var(--ease-luxury), opacity 0.4s var(--ease-luxury);
}

.city-list-item.active .cli-num,
.city-list-item:hover .cli-num {
  color: var(--cyan);
  opacity: 1;
}

.cli-content {
  flex: 1;
  min-width: 0;
}

.cli-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  opacity: 0.6;
  display: block;
  margin-bottom: 3px;
  transition: opacity 0.3s;
}

.city-list-item:hover .cli-sub,
.city-list-item.active .cli-sub {
  opacity: 1;
}

.cli-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
  transition: color 0.4s var(--ease-luxury);
}

.city-list-item.active .cli-name,
.city-list-item:hover .cli-name {
  color: var(--cyan);
}

.cli-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(10, 139, 155, 0.08);
  border: 1px solid rgba(10, 139, 155, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.cli-tag.coming-soon {
  color: var(--white-muted);
  background: transparent;
  border-color: var(--black-border);
}

.cli-arrow {
  color: var(--white-muted);
  opacity: 0.2;
  transform: translateX(-10px);
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury), color 0.4s var(--ease-luxury);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.city-list-item.active .cli-arrow,
.city-list-item:hover .cli-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--cyan);
}

.cities-cta {
  align-self: flex-start;
}


/* ── Property Types (Bento Grid) ────── */
/* ── Property Types (Accordion) ────── */
#property-types-section {
  background-color: var(--page-bg);
  padding-top: 220px;
}

/* Split section header */
.pt-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 56px;
  padding: 0 60px;
}

.pt-header-left h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.pt-header-left h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: var(--cyan) !important;
  font-size: 1.05em !important;
  text-transform: none !important;
  display: inline-block !important;
  transform: none !important;
  margin-left: 4px !important;
}

.pt-header-desc {
  max-width: 580px;
  margin: 0;
  flex-shrink: 0;
}

/* Horizontal accordion grid */
.property-types-grid {
  display: flex;
  gap: 6px;
  height: 740px;
  padding: 0 60px;
}

/* ── Card ── */
.pt-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 139, 155, 0.06);
  background: var(--black-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  cursor: pointer;
  transition: flex-grow 1.1s cubic-bezier(0.5, 0, 0.15, 1),
              border-color 0.6s var(--ease-luxury),
              box-shadow 0.6s var(--ease-luxury);
  will-change: transform;
}

/* Teal bottom accent line — scaleX reveal */
.pt-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.65s var(--ease-luxury);
  z-index: 4;
  border-radius: 0 0 16px 16px;
}

/* Giant watermark number from data-num attribute */
.pt-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: 50px;
  right: -6px;
  font-family: var(--serif);
  font-size: clamp(90px, 10vw, 148px);
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  letter-spacing: -0.05em;
  transition: color 0.5s var(--ease-luxury);
}

.pt-card:hover {
  flex-grow: 3.2;
}

.pt-card:hover::after {
  transform: scaleX(1);
}

.pt-card:hover::before {
  color: rgba(255, 255, 255, 0.035);
}

/* Small italic number — top left */
.pt-number {
  position: absolute;
  top: 28px;
  left: 32px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.32);
  z-index: 3;
  transition: color 0.45s var(--ease-luxury);
  pointer-events: none;
}

.pt-card:hover .pt-number {
  color: var(--cyan);
}

/* Background image */
.pt-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 1.1s cubic-bezier(0.5, 0, 0.15, 1);
}

.pt-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-card:hover .pt-card-bg {
  transform: scale(1.06);
}

/* Cinematic gradient overlay */
.pt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 26, 28, 0.04) 0%,
    rgba(7, 26, 28, 0.42) 52%,
    rgba(7, 26, 28, 0.88) 100%
  );
  z-index: 1;
  transition: background 0.75s var(--ease-luxury);
}

.pt-card:hover .pt-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 28, 0.08) 0%,
    rgba(7, 26, 28, 0.55) 48%,
    rgba(7, 26, 28, 0.95) 100%
  );
}

/* Property count badge */
.pt-tag {
  position: absolute;
  top: 28px;
  right: 32px;
  background: rgba(7, 26, 28, 0.48);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  z-index: 3;
  transition: background 0.45s var(--ease-luxury), border-color 0.45s, color 0.45s;
}

.pt-card:hover .pt-tag {
  background: rgba(10, 139, 155, 0.82);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Content block pinned to bottom */
.pt-content {
  display: flex;
  flex-direction: column;
  z-index: 3;
  position: relative;
}

/* Property type name — script, always visible */
.pt-name {
  font-family: var(--script) !important;
  font-style: italic !important;
  font-weight: 100 !important;
  font-size: clamp(28px, 2.8vw, 42px);
  color: #ffffff;
  margin: 0;
  line-height: 0.95;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  transition: font-size 0.6s var(--ease-luxury);
}

.pt-card:hover .pt-name {
  font-size: clamp(36px, 3.6vw, 52px);
  white-space: normal;
}

/* Description — max-height reveal */
.pt-description {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.5, 0, 0.15, 1),
              opacity 0.5s var(--ease-luxury),
              margin-top 0.5s var(--ease-luxury);
}

.pt-card:hover .pt-description {
  max-height: 110px;
  opacity: 1;
  margin-top: 14px;
}

/* CTA link */
.pt-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-luxury) 0.08s,
              transform 0.4s var(--ease-luxury) 0.08s,
              gap 0.3s, color 0.3s;
  margin-top: 0;
}

.pt-card:hover .pt-action {
  opacity: 1;
  transform: translateY(0);
  margin-top: 16px;
}

.pt-action:hover {
  gap: 14px !important;
  color: var(--cyan-light) !important;
}

.pt-card:hover .pt-action .arrow {
  animation: slideArrow 0.9s infinite alternate var(--ease-luxury);
}

@keyframes slideArrow {
  from { transform: translateX(0); }
  to   { transform: translateX(5px); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pt-section-header {
    gap: 48px;
    padding: 0 60px;
  }
  .pt-header-desc {
    max-width: 440px;
    font-size: 18px;
  }
  .property-types-grid {
    height: 680px;
  }
}

@media (max-width: 900px) {
  #property-types-section {
    padding-top: 120px;
  }
  .pt-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 40px;
    padding: 0 40px;
  }
  .pt-header-desc {
    max-width: 100%;
    font-size: 16px;
  }
  .property-types-grid {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 0 40px;
  }
  .pt-card {
    flex: none;
    height: 240px;
  }
  .pt-card:hover {
    flex-grow: 1 !important;
  }
  .pt-card::before {
    font-size: 80px;
    bottom: 24px;
  }
  .pt-name {
    white-space: normal !important;
    font-size: 36px !important;
  }
  .pt-description {
    max-height: 80px !important;
    opacity: 1 !important;
    margin-top: 10px !important;
  }
  .pt-action {
    opacity: 1 !important;
    transform: translateY(0) !important;
    margin-top: 14px !important;
  }
}

@media (max-width: 600px) {
  #property-types-section {
    padding-top: 80px;
  }
  .pt-section-header {
    padding: 0 24px;
  }
  .property-types-grid {
    padding: 0 24px;
    gap: 8px;
  }
  .pt-card {
    height: 220px;
    padding: 24px;
  }
  .pt-tag {
    top: 20px;
    right: 20px;
  }
  .pt-number {
    top: 20px;
    left: 20px;
  }
}

/* ── Why Choose Us ───────────────────────── */
#why-choose-us-section {
  background-color: var(--page-bg);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.why-sticky-col h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(10, 139, 155, 0.06);
  padding: 56px 40px;
  text-align: center;
  transition: transform 0.6s var(--ease-luxury), border-color 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury), background-color 0.6s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-12px);
  border-color: rgba(10, 139, 155, 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 40px 80px rgba(10, 139, 155, 0.08);
}

.why-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(10, 139, 155, 0.06);
  border: 1px solid rgba(10, 139, 155, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--cyan);
  transition: transform 0.5s var(--ease-luxury), background-color 0.5s, color 0.5s, box-shadow 0.5s;
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.1) rotate(8deg);
  background: var(--cyan);
  color: #ffffff;
  border-color: var(--cyan-light);
  box-shadow: 0 10px 25px rgba(10, 139, 155, 0.25);
}

.why-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.25;
}

.why-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  margin-top: 0;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.why-card:hover .why-title {
  color: var(--cyan);
}

.why-desc {
  margin: 0;
}

/* ── Our Services (Stacked Scroll) ───────── */
#services-section {
  background: var(--page-bg);
  padding-top: 80px;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

/* Scene: GSAP pins everything inside — heading + deck stay visible during stacking */
.svc-stack-scene {
  display: flex;
  flex-direction: column;
  padding: 0 48px 16px;
}

/* Compact heading lives inside the pinned scene */
.svc-heading {
  text-align: center;
  padding: 12px 0 0;
  flex-shrink: 0;
}

/* Outer clip: overflow:hidden hides entering cards below;
   padding-top is the peek zone where stacked cards show above the active one.
   max-width keeps cards from spanning full screen width */
.svc-card-wrapper {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
  flex-shrink: 0;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.svc-heading h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-heading .section-subtitle {
  max-width: 800px;
  margin: 0 auto 8px;
}

/* Deck: no clip needed — wrapper handles it */
.svc-card-deck {
  position: relative;
  height: clamp(360px, 48vh, 480px);
}

/* White split-layout card */
.svc-card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  /* Only a clean ring — any blur radius destroys the rounded-corner silhouette on dark bg */
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: stretch;
  will-change: transform, opacity;
}

.svc-card:nth-child(1) { z-index: 1; }
.svc-card:nth-child(2) { z-index: 2; }
.svc-card:nth-child(3) { z-index: 3; }
.svc-card:nth-child(4) { z-index: 4; }

/* Depth overlay — available for future blur if needed */
.svc-card-depth {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

/* ── Left text panel ── */
.svc-card-left {
  flex: 0 0 44%;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 2;
}

/* ── Right photo panel — full bleed ── */
.svc-card-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Soft gradient on left edge to blend white panel with photo */
.svc-card-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.28) 0%, transparent 22%);
  z-index: 2;
  pointer-events: none;
}

/* Photo fills the entire right panel */
.svc-card-photo {
  position: absolute;
  inset: 0;
  background: var(--card-img) center / cover no-repeat;
  transition: transform 0.7s var(--ease-luxury);
}

.svc-card:hover .svc-card-photo {
  transform: scale(1.04);
}

/* ── Card typography (dark on white) ── */
.svc-num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #b0b0b0;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.svc-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid #e8e8e8;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.svc-card:hover .svc-icon {
  border-color: #40c0d0;
  background: rgba(64, 192, 208, 0.06);
  color: #40c0d0;
}

.svc-icon svg {
  width: 19px;
  height: 19px;
}

.svc-big-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 300;
  color: #0d1117;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.svc-body-text {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 340px;
}

/* Pill CTA button */
.svc-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d1117;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 22px 12px 16px;
  border-radius: 100px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.25s ease, gap 0.3s ease;
}

.svc-explore-btn:hover {
  background: #1e2a40;
  gap: 14px;
}

.svc-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #40c0d0;
  flex-shrink: 0;
}

.svc-arr {
  display: inline-block;
  transition: transform 0.25s ease;
}

.svc-explore-btn:hover .svc-arr {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .svc-intro {
    padding: 80px 0 40px;
  }
  .svc-stack-scene {
    padding: 0 16px 30px;
  }
  .svc-heading {
    padding: 20px 0 16px;
  }
  .svc-card-wrapper {
    padding-top: 104px; /* 3×28px peek + 20px radius + buffer */
  }
  .svc-heading h2 {
    font-size: clamp(28px, 7vw, 40px);
  }
  .svc-card-deck {
    height: clamp(460px, 70vh, 580px);
  }
  .svc-card {
    flex-direction: column;
  }
  .svc-card-left {
    flex: 0 0 auto;
    padding: 32px 28px 20px;
  }
  .svc-card-right {
    flex: 1;
    min-height: 180px;
  }
  .svc-big-title {
    font-size: clamp(26px, 6vw, 36px);
    margin-bottom: 12px;
  }
  .svc-body-text {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .svc-num {
    margin-bottom: 14px;
  }
  .svc-icon {
    margin-bottom: 14px;
  }
}

/* ── New Horizontal Services Layout (Desktop) ── */
.svc-horizontal-scene {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--page-bg);
  position: relative;
}

.svc-horizontal-left {
  width: 100%;
  max-width: clamp(1080px, 88vw, 1760px);
  margin: 0 auto;
  padding: 170px 48px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  background-color: transparent;
}

.svc-horizontal-heading {
  text-align: center;
  width: 100%;
}

.svc-horizontal-heading h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.svc-horizontal-heading h2 em {
  font-family: var(--serif);
  font-style: normal;
  color: var(--cyan);
}

.svc-horizontal-heading .section-subtitle {
  margin: 0 auto;
  max-width: 760px;
}

.svc-horizontal-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

.svc-horizontal-track {
  display: flex;
  gap: 40px;
  padding-left: max(48px, calc((100vw - clamp(1080px, 88vw, 1760px)) / 2 + 48px));
  padding-right: max(48px, calc((100vw - clamp(1080px, 88vw, 1760px)) / 2 + 48px));
  align-items: flex-start;
  height: 100%;
  transform: translate3d(90vw, 0, 0);
  will-change: transform;
}

/* Premium Vertical Card Layout */
.svc-card-v {
  width: 390px;
  height: 440px;
  flex-shrink: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(14, 34, 36, 0.04), 0 1px 2px rgba(14, 34, 36, 0.02);
  border: 1px solid rgba(14, 34, 36, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury), border-color 0.4s var(--ease-luxury);
  will-change: transform, box-shadow;
}

.svc-card-v:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(7, 104, 117, 0.12);
  border-color: rgba(7, 104, 117, 0.2);
}

.svc-card-v-photo-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.svc-card-v-photo {
  position: absolute;
  inset: 0;
  background: var(--card-img) center / cover no-repeat;
  transition: transform 0.8s var(--ease-luxury);
}

.svc-card-v:hover .svc-card-v-photo {
  transform: scale(1.06);
}

.svc-card-v-body {
  flex: 1;
  padding: 48px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.svc-card-v-top-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.svc-v-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 14px;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.svc-card-v:hover .svc-v-title {
  color: var(--cyan);
}

.svc-v-desc {
  margin: 0;
  font-size: 16px !important;
  line-height: normal !important;
}

.svc-card-v .svc-icon {
  position: absolute;
  top: 220px; /* Aligns with the bottom edge of the photo-wrap */
  left: 28px;
  transform: translateY(-50%);
  z-index: 12;
  background: #ffffff;
  border: 1px solid rgba(14, 34, 36, 0.08);
  margin-bottom: 0;
  transition: all 0.4s var(--ease-luxury);
}

.svc-card-v:hover .svc-icon {
  border-color: var(--cyan);
  background: #f0fafb;
  color: var(--cyan);
}

/* ── Let's Connect (Contact) ─────────────── */
#connect-section {
  background-color: var(--page-bg);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.connect-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.connect-info {
  display: flex;
  flex-direction: column;
}

.connect-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.connect-subtitle {
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 139, 155, 0.03);
  transition: transform 0.4s var(--ease-luxury), border-color 0.4s, background-color 0.4s, color 0.4s;
}

.detail-item:hover .detail-icon-wrap {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background-color: var(--cyan);
  color: #ffffff;
}

.detail-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.25;
}

.detail-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 6px;
  display: block;
}

.detail-value {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  text-decoration: none;
}

a.detail-value:hover {
  color: var(--cyan);
}

.connect-form-wrap {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(10, 139, 155, 0.08);
  padding: 56px;
  box-shadow: 0 30px 60px rgba(10, 139, 155, 0.04);
}

.connect-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.span-2 {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 16px 20px;
  border: 1px solid rgba(10, 139, 155, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transition: border-color 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury), background-color 0.4s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(10, 139, 155, 0.08);
  background: #ffffff;
}

.btn-form-submit {
  grid-column: span 2;
  margin-top: 16px;
  border: 1px solid var(--white);
  border-radius: 100px;
  padding: 18px;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(14, 34, 36, 0.15);
  transition: all 0.5s var(--ease-luxury);
}

.btn-form-submit:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 139, 155, 0.35);
}

/* ── CTA Banner (Promo Box) ──────────────── */
.promo-banner {
  position: relative;
  background: #E8EEE9;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 360px;
}

.promo-content {
  flex: 0 0 56%;
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.promo-label {
  display: inline-block;
  background: rgba(10, 139, 155, 0.12);
  color: var(--teal);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.promo-content h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.promo-content p {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(14, 34, 36, 0.65);
  margin-bottom: 28px;
  max-width: 420px;
}

.promo-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-promo-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  padding: 17px 40px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}

.btn-promo-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(14, 34, 36, 0.3);
}

.btn-promo-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(14, 34, 36, 0.35);
  transition: border-color 0.4s, color 0.4s, gap 0.4s;
}

.btn-promo-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  gap: 14px;
}

.promo-visual-wrap {
  flex: 0 0 44%;
  position: relative;
  overflow: hidden;
}

@keyframes floatBuilding {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.025) translateY(-8px); }
}

.promo-visual-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: floatBuilding 9s ease-in-out infinite;
  transform-origin: center;
}

.promo-banner:hover .promo-visual-wrap img {
  animation-play-state: paused;
}

/* ── Responsive Rules for New Sections ───── */
@media (max-width: 1200px) {
  .promo-content {
    padding: 64px 60px;
  }
}

@media (max-width: 1100px) {
  .cities-list-panel {
    padding: 60px 48px 60px 56px;
    gap: 36px;
  }
}

@media (max-width: 992px) {
  /* NOTE: #floating-section and #video-mask-container mobile layout are handled
     entirely by css/responsive.css (max-width: 991px block), which keeps them
     absolutely positioned to match the GSAP pinned scroll-mask animation in
     js/antigravity.js. A static/relative fallback used to live here and fought
     the animation via higher-specificity selectors (e.g. #video-mask-container
     .mask-content beat responsive.css's plain .mask-content) — removed. */

  .section-padding {
    padding: 100px 0;
  }
  .cities-feature-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cities-feature-panel {
    aspect-ratio: 16/9;
    min-height: 360px;
  }
  .cities-feature-img-wrap {
    min-height: auto;
    height: 100%;
  }
  .cities-list-panel {
    padding: 60px 40px;
    gap: 36px;
  }
  .cities-list-panel::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .connect-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .promo-banner {
    flex-direction: column;
    min-height: auto;
  }
  .promo-content {
    flex: none;
    width: 100%;
    padding: 56px 48px;
  }
  .promo-visual-wrap {
    flex: none;
    width: 100%;
    height: 320px;
  }
  .promo-visual-wrap img {
    position: absolute;
  }

  /* Mobile Responsive override for Signature Developments 3D Section */
  #trending-section {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding: 100px 0 !important;
    background: radial-gradient(circle at center, #E8F4F5 0%, #F5F8F8 100%) !important;
    perspective: none !important;
    z-index: 10 !important;
  }
  #trending-section .perspective-grid {
    display: none !important;
  }
  #trending-section .trending-content-wrap {
    transform: none;
    margin-bottom: 60px !important;
    opacity: 1;
    padding: 0 24px;
    max-width: 100% !important;
    text-align: center !important;
  }
  #trending-section .trending-hero-title {
    opacity: 1;
    transform: none;
    font-size: clamp(32px, 6vw, 48px) !important;
    color: #0E2224 !important;
    margin-bottom: 16px !important;
  }
  #trending-section .trending-subtitle {
    opacity: 1;
    transform: none;
    font-size: 15px !important;
    color: var(--white-muted) !important;
    margin-bottom: 24px !important;
  }
  #trending-section .trending-cta {
    opacity: 1;
    transform: none;
  }
  #trending-section .tunnel-images {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    transform: none !important;
    transform-style: flat !important;
  }
  #trending-section .float-img {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    transform: none !important;
    opacity: 1;
  }
  #trending-section .float-img img {
    border-radius: 12px;
  }
  #trending-section .card-exhibit-label {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
  .section-container {
    padding: 0 24px;
  }
  .connect-form-wrap {
    padding: 40px 32px;
  }
  .carousel-header {
    padding: 0 24px 40px !important;
  }
  .carousel-track {
    padding: 0 24px !important;
  }
  .carousel-counter {
    font-size: 36px !important;
  }
}

@media (max-width: 600px) {
  .carousel-header {
    padding: 0 16px 32px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .carousel-track {
    padding: 0 16px !important;
    gap: 16px !important;
  }
  .carousel-card {
    width: 280px !important;
  }
  .service-icon-wrap {
    width: 48px !important;
    height: 48px !important;
  }
  .service-icon-wrap svg {
    width: 20px !important;
    height: 20px !important;
  }

  .cities-feature-panel {
    aspect-ratio: 3/2;
    min-height: 280px;
  }
  .cities-feature-meta {
    padding: 28px 28px 52px;
  }
  .cities-feature-name {
    font-size: clamp(36px, 11vw, 60px) !important;
  }
  .cities-list-panel {
    padding: 48px 24px;
    gap: 28px;
  }
  .cli-tag {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .connect-form {
    grid-template-columns: 1fr;
  }
  .btn-form-submit {
    grid-column: span 1;
  }
  .form-group.span-2 {
    grid-column: span 1;
  }
  #trending-section .tunnel-images {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 24px !important;
  }
  #trending-section .float-img {
    aspect-ratio: 4/3 !important;
  }

  /* 600px override for Video Mask feature cards (floating-section grid rules
     removed — that section is absolutely positioned on mobile, see responsive.css) */
  #video-mask-container .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Explore Prime Cities Desktop Absolute positioning for portal */
@media (min-width: 992px) {
  #portal-container #cities-section {
    position: absolute;
    top: 0;
    transform: translateY(100%);
    will-change: transform;
    left: 0;
    width: 100%;
    height: 101vh;
    z-index: 40;
    background: var(--page-bg);
    overflow: hidden;
  }
  #portal-container #cities-section .cities-feature-wrap {
    height: 100%;
    min-height: auto;
  }
  #portal-container #cities-section .cities-feature-panel {
    height: 70%;
    align-self: end;
    margin-bottom: 6%;
    margin-left: 80px;
    margin-right: 40px;
    border-radius: 24px;
    min-height: auto;
  }
  #portal-container #cities-section .cities-list-panel {
    height: 100%;
    padding: 60px 80px;
    justify-content: center;
  }
}

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  margin-right: 0.22em;
}
.word {
  display: inline-block;
  will-change: transform, opacity;
}
.char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
}
.char {
  display: inline-block;
  will-change: transform, opacity;
}

/* Prevent italic characters inside em from getting cropped by overflow: hidden */
em .char-wrap {
  position: relative;
  top: 0.06em; /* Align baselines of italicized text perfectly with normal text */
  padding-top: 0.15em;
  margin-top: -0.15em;
  padding-right: 0.15em;
  margin-right: -0.1em;
}
em .word-wrap {
  position: relative;
  top: 0.06em; /* Align baselines of italicized text perfectly with normal text */
  padding-top: 0.15em;
  margin-top: -0.15em;
  padding-right: 0.15em;
  margin-right: -0.1em;
}
h1 em, h2 em, h3 em {
  display: inline !important;
}

@media (max-height: 800px) and (min-width: 992px) {
  #video-mask-container .features-intro {
    margin-bottom: 15px !important;
  }
  #video-mask-container .features-title-main {
    font-size: clamp(28px, 4vw, 36px) !important;
    margin-bottom: 10px !important;
  }
  #video-mask-container .features-tagline {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  #video-mask-container .feature-card {
    padding: 20px 16px !important;
  }
  #video-mask-container .feature-num {
    font-size: 32px !important;
    margin-bottom: 8px !important;
  }
  #video-mask-container .feature-title {
    margin-bottom: 8px !important;
  }
  #video-mask-container .features-grid {
    margin-bottom: 15px !important;
    gap: 16px !important;
  }

  /* Services Section layout overrides for short/laptop screens */
  .svc-horizontal-left {
    padding-top: 110px !important;
  }
  .svc-horizontal-right {
    padding-top: 20px !important;
  }
  .svc-card-v {
    height: 380px !important;
  }
  .svc-card-v-photo-wrap {
    height: 170px !important;
  }
  .svc-card-v-body {
    padding: 32px 24px 20px !important;
  }
  .svc-v-title {
    font-size: 21px !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
  }
  .svc-v-desc {
    font-size: 13.5px !important;
    line-height: 1.4 !important;
  }
  .svc-card-v .svc-icon {
    top: 170px !important;
  }
}

@media (min-width: 992px) {
  /* Override parent transitions so inner GSAP character/word reveals animate cleanly on desktop */
  #property-types-section .pt-section-header .pt-header-left.reveal,
  #property-types-section .pt-section-header .pt-header-desc.reveal,
  #why-choose-us-section .why-sticky-col.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
