/* ============================================
   SECTOR ZERO — Landing Page Styles
   Art Deco Luxury Real Estate
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2744;
  --navy-light: #2a3a5c;
  --burgundy: #7a2e2e;
  --burgundy-light: #9b4d4d;
  --purple: #5b3e8a;
  --gold: #c9a96e;
  --gold-light: #e4d5b7;
  --olive: #4a6741;
  --sky: #6aafe0;
  --sky-light: #d4eaf7;
  --warm-bg: #faf8f5;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --grey-100: #f0ede8;
  --grey-200: #e0dbd4;
  --grey-300: #b8b2a8;
  --grey-500: #7a746a;
  --grey-700: #4a453d;
  --grey-900: #1c1a17;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --header-height: 72px;
  --container-width: 1200px;
  --section-padding: 120px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Common --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logos {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 98px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.header.scrolled .header-logo-img {
  filter: brightness(0);
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}

.header.scrolled .header-nav a {
  color: var(--grey-700);
}

.header-nav a:hover {
  color: var(--gold);
}

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

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header.scrolled .header-cta {
  border-color: var(--navy);
  color: var(--navy);
}

.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
  background: var(--navy);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}

.mobile-nav-cta {
  margin-top: 8px;
  text-align: center;
  padding: 14px !important;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 2px;
  border: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a2744;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 39, 68, 0.4) 0%,
    rgba(26, 39, 68, 0.1) 20%,
    rgba(0, 0, 0, 0.0) 40%,
    rgba(0, 0, 0, 0.05) 55%,
    rgba(26, 39, 68, 0.4) 72%,
    rgba(26, 39, 68, 0.75) 88%,
    rgba(26, 39, 68, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: calc(var(--header-height) + 24px) 24px 0;
  margin-top: -12vh;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-highlight {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 12px;
}

.hero-logo {
  display: block;
  max-width: 240px;
  width: 45vw;
  height: auto;
  margin: 0 auto 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 4px 29px rgba(0,0,0,1.86), 0 0 58px rgba(0,0,0,1.43);
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  text-shadow: 0 4px 29px rgba(0,0,0,0.86), 0 0 58px rgba(0,0,0,0.43);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.6);
  border-bottom: 1.5px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* --- Representative Image Label --- */
.vision-image,
.residences-image,
.amenity-gallery-item,
.carousel-slide {
  position: relative;
}

.vision-image::after,
.residences-image::after,
.carousel-slide::after {
  content: 'Representative Image';
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.hero::after,
.contact::after {
  content: 'Representative Image';
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.amenity-gallery-item::after {
  content: 'Representative Image';
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 18px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #b8953c;
  border-color: #b8953c;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* Hero-only: frosted-glass CTAs, spaced below ticket banner */
.hero-ctas {
  margin-top: 64px;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-outline {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.hero-ctas .btn-primary:hover,
.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
}

/* ===== Hero ticket-size banner (bottom-left) ===== */
.hero-ticket-group {
  position: absolute;
  left: 48px;
  bottom: 96px;
  z-index: 2;
  text-align: left;
  max-width: 480px;
}
@media (max-width: 768px) {
  .hero-ticket-group { left: 20px; right: 20px; bottom: 80px; }
}
.hero-ticket {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 10px;
  font-family: var(--font-body);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.hero-ticket-item {
  padding: 14px 22px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.1;
}
.hero-ticket-item + .hero-ticket-item {
  border-left: 1px solid rgba(255,255,255,0.35);
}
.hero-ticket-left {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: #9c2e30;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: none;
}
.hero-ticket-left .hero-ticket-label { opacity: 0.85; }
.hero-ticket-right { background: #E65E60; }
.hero-ticket-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 4px;
}
.hero-ticket-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero-ticket-sup {
  font-size: 0.65rem;
  vertical-align: super;
  font-weight: 500;
  opacity: 0.85;
}
.hero-ticket-tagline {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
  .hero-ticket-item { padding: 12px 16px; }
  .hero-ticket-value { font-size: 1.1rem; }
  .hero-ticket-tagline { font-size: 0.75rem; letter-spacing: 0.12em; }
}

.btn-full {
  width: 100%;
}

/* ============================================
   VISION
   ============================================ */
.vision {
  background: var(--white);
}

.vision-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.vision-image {
  overflow: hidden;
}

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

.vision-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-description {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-500);
  margin-bottom: 40px;
}

.vision-stats-inline {
  display: flex;
  gap: 40px;
  justify-content: space-evenly;
}

.stat-inline {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-unit {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-top: 4px;
  min-height: 18px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-top: 8px;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

/* Full-Width Interactive Map */
.location-map-full {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
  margin-top: 0;
}

.location-map-fullimg {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
}

.map-zoom-hint {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(26, 39, 68, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 100px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.location-map-full:hover .map-zoom-hint {
  opacity: 0;
}

.map-gmaps-nudge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 5;
  text-decoration: none;
}

.map-gmaps-nudge.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.location-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-500);
  margin-bottom: 40px;
  line-height: 1.7;
}

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.connectivity-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.connectivity-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--olive);
}

.connectivity-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 2px;
}

.connectivity-item span {
  font-size: 0.8rem;
  color: var(--grey-500);
  line-height: 1.5;
}

.location-visual {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.location-map-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-200);
}

.location-map-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.location-map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}

.map-sublabel {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 4px;
}

/* ============================================
   PROXIMITY
   ============================================ */
.proximity {
  padding: var(--section-padding) 0;
  background: var(--white);
  color: var(--grey-900);
}

.proximity-heading {
  color: var(--navy);
}

.proximity .section-label {
  color: var(--gold);
}

.proximity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.proximity-category h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--gold-light);
}

.proximity-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proximity-category li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.proximity-category li span:first-child {
  color: rgba(255,255,255,0.8);
}

.proximity-category li span:last-child {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.8rem;
  white-space: nowrap;
  margin-left: 16px;
}

/* ============================================
   ADVANTAGE
   ============================================ */
.advantage {
  padding: var(--section-padding) 0;
  background: #eef4fb;
}

.advantage-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.advantage-sub-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--burgundy);
  line-height: 1.2;
}

.advantage-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--grey-500);
  margin-bottom: 32px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.adv-card {
  padding: 36px 28px;
  background: var(--off-white);
  border-radius: 4px;
  border: 1px solid var(--grey-100);
  transition: all 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--gold-light);
}

.adv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  color: var(--navy);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.adv-card:hover .adv-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.adv-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.adv-card p {
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.6;
}

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

.eco-card {
  padding: 32px 24px;
  background: var(--navy);
  border-radius: 4px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.3);
}

.eco-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 12px;
  right: 16px;
}

.eco-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.eco-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   RESIDENCES
   ============================================ */
.residences {
  background: #f8f5f0;
  text-align: center;
}

.residences .container {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.residences-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.residences-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.residences-image {
  overflow: hidden;
}

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

/* Residence Text Flip */
.res-flip-text {
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-style: preserve-3d;
}

.res-flip-text.fading {
  transform: rotateX(90deg);
  opacity: 0;
}

.residences .section-label {
  color: var(--gold);
}

.script-text {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--burgundy);
  font-size: 0.9em;
}

.residences-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0 48px;
  text-align: left;
}

.res-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--grey-100);
  transition: all 0.3s ease;
}

.res-feature:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.res-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  color: var(--navy);
}

.res-feature p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-700);
  line-height: 1.5;
  padding-top: 10px;
}

.residences-cta {
  margin-top: 16px;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
  padding: var(--section-padding) 0;
  background: var(--white);
  text-align: center;
}

.amenities .section-label {
  color: var(--gold);
}

.amenities-heading {
  color: var(--navy);
}

/* Amenity Carousel */
.amenity-carousel {
  position: relative;
  height: 480px;
  margin: 48px 0 32px;
  perspective: 1200px;
}

.amenity-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.amenity-carousel .carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%) scale(0.65);
  opacity: 1;
  transition: transform 0.6s ease, opacity 0.4s ease;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
}

.amenity-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-carousel .carousel-slide.active {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.amenity-carousel .carousel-slide.prev {
  transform: translate(-50%, -50%) translateX(-380px) scale(0.8);
  z-index: 2;
}

.amenity-carousel .carousel-slide.next {
  transform: translate(-50%, -50%) translateX(380px) scale(0.8);
  z-index: 2;
}

.amenity-carousel .carousel-slide.far-prev {
  transform: translate(-50%, -50%) translateX(-650px) scale(0.65);
  z-index: 1;
}

.amenity-carousel .carousel-slide.far-next {
  transform: translate(-50%, -50%) translateX(650px) scale(0.65);
  z-index: 1;
}

.amenity-carousel .carousel-slide::after {
  content: 'Representative Image';
  position: absolute;
  top: 6px;
  left: 6px;
  bottom: auto;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.amenity-carousel .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.amenity-carousel .carousel-slide.active .carousel-caption {
  opacity: 1;
}

.amenities-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0 40px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid var(--grey-200);
  border-radius: 2px;
  cursor: pointer;
  color: var(--grey-500);
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.tab-panel {
  display: none;
  text-align: left;
}

.tab-panel.active {
  display: block;
  animation: tabFade 0.25s ease;
}

@keyframes tabFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.amenity-level-header {
  text-align: center;
  margin-bottom: 32px;
}

.amenity-level-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
}

.amenity-level-header p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-500);
  margin-top: 4px;
}

.amenity-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.amenity-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-500);
  margin-bottom: 16px;
}

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.amenity-columns .amenity-tags {
  justify-content: flex-start;
}

.amenity-tag {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  color: var(--grey-700);
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.amenity-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.amenity-tag.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================
   DEVELOPERS
   ============================================ */
.developers {
  padding: var(--section-padding) 0;
  background: #eef4fb;
  text-align: center;
}

.developers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  text-align: left;
  align-items: stretch;
}

.dev-card {
  padding: 48px 40px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--grey-100);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.dev-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.dev-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.dev-desc {
  font-size: 0.88rem;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.dev-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  margin-top: auto;
  padding: 24px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.dev-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dev-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  height: 2rem;
  display: flex;
  align-items: flex-end;
}

.dev-stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-500);
  margin-top: 8px;
}

.dev-motto {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  background: url('contact-bg.jpg') center/cover no-repeat;
  color: var(--white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 10, 0.65);
}

.contact .section-label {
  color: var(--gold);
}

.contact .section-heading {
  color: var(--white);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-desc {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.lead-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 4px;
  background: var(--off-white);
  color: var(--grey-900);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-300);
}

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

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a746a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

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

.lead-form .btn {
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--grey-300);
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-padding) 0 80px;
  background: #f8f5f0;
  text-align: center;
  overflow: hidden;
}

.gallery .section-label {
  color: var(--gold);
}

/* 3D Carousel */
.gallery-carousel {
  position: relative;
  height: 480px;
  margin-top: 48px;
  perspective: 1200px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%) scale(0.65);
  opacity: 1;
  transition: transform 0.6s ease;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
}

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

.carousel-slide.active {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.carousel-slide.prev {
  transform: translate(-50%, -50%) translateX(-380px) scale(0.8);
  z-index: 2;
}

.carousel-slide.next {
  transform: translate(-50%, -50%) translateX(380px) scale(0.8);
  z-index: 2;
}

.carousel-slide.far-prev {
  transform: translate(-50%, -50%) translateX(-650px) scale(0.65);
  z-index: 1;
}

.carousel-slide.far-next {
  transform: translate(-50%, -50%) translateX(650px) scale(0.65);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-slide.active .carousel-caption {
  opacity: 1;
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}

.gallery-item-large img {
  min-height: 496px;
}

/* ============================================
   SIDE WIDGET
   ============================================ */
.side-widget {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.side-widget-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.side-widget-label {
  display: none;
}

.side-enquire {
  background: var(--gold);
}

.side-whatsapp {
  background: #25D366;
}

.side-call {
  background: var(--navy);
}

.side-widget-btn svg {
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  background: var(--grey-900);
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.footer-brand {
  width: fit-content;
  text-align: center;
}

.footer-logo-img {
  height: 150px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-by {
  font-size: 0.8rem;
  margin-top: 4px;
}

.footer-links {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 60px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-disclaimer-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.disclaimer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 220px;
  padding: 24px;
}

.disclaimer-qr-img {
  width: 120px;
  height: 120px;
  background: var(--white);
  padding: 6px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.disclaimer-rera {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin-bottom: 8px;
}

.disclaimer-link {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: underline;
}

.disclaimer-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.disclaimer-text a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: 2px;
}

.float-call {
  background: var(--white);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  flex: 0 0 auto;
}

.float-enquire {
  background: var(--gold);
  color: var(--navy);
  flex: 1;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 6px;
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--grey-500);
  cursor: pointer;
  line-height: 1;
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal > p {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-bottom: 24px;
}

.modal-form .form-group {
  margin-bottom: 12px;
}

.thank-you-modal {
  text-align: center;
}

.thank-you-icon {
  color: var(--olive);
  margin-bottom: 16px;
}

.thank-you-modal p {
  font-size: 0.95rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ============================================
   FLOOR PLANS
   ============================================ */
.floor-plans {
  padding: var(--section-padding) 0;
  background: var(--white);
  text-align: center;
}

.floor-plans-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-500);
  margin-bottom: 48px;
  line-height: 1.7;
}

.floor-plan-cta-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* Stage holds a 3-card static stack: back-left, back-right, center (on top) */
.floor-plan-stage {
  position: relative;
  height: 440px;
  margin: 0 auto;
  perspective: 1200px;
}

.floor-plan-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 680px;
  max-width: 90%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  background: var(--grey-100);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  will-change: transform;
}

.floor-plan-card-center {
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  cursor: pointer;
  display: block;
}

.floor-plan-card-center:hover {
  transform: translate(-50%, -50%) translateY(-4px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
}

.floor-plan-card-back-left {
  transform: translate(-50%, -50%) translateX(-340px) scale(0.82) rotateY(10deg);
  z-index: 1;
  opacity: 0.9;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.floor-plan-card-back-right {
  transform: translate(-50%, -50%) translateX(340px) scale(0.82) rotateY(-10deg);
  z-index: 1;
  opacity: 0.9;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.floor-plan-trigger {
  text-decoration: none;
}

.floor-plan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(2px);
}

.floor-plan-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(26, 39, 68, 0.85);
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.floor-plan-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26, 39, 68, 0.55);
  gap: 12px;
  transition: background 0.3s ease;
}

.floor-plan-trigger:hover .floor-plan-overlay {
  background: rgba(26, 39, 68, 0.7);
}

.floor-plan-lock {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.floor-plan-overlay-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}

.floor-plan-overlay-sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ============================================
   HERO RERA STRIP
   ============================================ */
.hero-rera-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 24px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.hero-rera-qr {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--white);
  padding: 2px;
}

.hero-rera-strip span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   DESIGN PHILOSOPHY
   ============================================ */
.design-philosophy {
  background: var(--white);
}

.design-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.design-image {
  overflow: hidden;
  position: relative;
}

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

.design-image::after {
  content: 'Representative Image';
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.design-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.design-text > .btn {
  align-self: flex-start;
}

.design-description {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-500);
  margin-bottom: 16px;
}

/* ============================================
   PROXIMITY ACCORDION
   ============================================ */
.proximity-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.proximity-accordion .proximity-category {
  border-bottom: 1px solid var(--grey-200);
}

.proximity-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.proximity-toggle h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding: 0;
  border: none;
}

.proximity-chevron {
  color: var(--navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.proximity-toggle[aria-expanded="true"] .proximity-chevron {
  transform: rotate(180deg);
}

.proximity-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  column-gap: 48px;
  align-items: start;
}

.proximity-content.open {
  max-height: 520px;
  padding-bottom: 20px;
}

.proximity-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

/* Image placeholder — one per accordion */
.proximity-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--grey-100);
  border: 1px dashed var(--grey-200);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 4px;
}

.proximity-visual::before {
  content: attr(data-category);
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255,255,255,0.7);
  padding: 5px 9px;
  border-radius: 2px;
}

.proximity-visual-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-500);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.proximity-visual-label small {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  color: var(--grey-300);
  letter-spacing: 1px;
}

/* When real image is dropped in, style it to cover the placeholder */
.proximity-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proximity-content li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
}

.proximity-content li span:first-child {
  color: var(--grey-700);
}

.proximity-content li span:last-child {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.8rem;
  white-space: nowrap;
  margin-left: 16px;
}

/* ============================================
   UPCOMING INFRASTRUCTURE
   ============================================ */
.upcoming-infra {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.infra-grid-8 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

/* Subtle per-card stagger reveal when grid comes into view */
.infra-grid-8 .infra-card,
.infra-grid-industry .infra-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.infra-grid-8.visible .infra-card,
.infra-grid-industry.visible .infra-card {
  opacity: 1;
  transform: translateY(0);
}

.infra-grid-8.visible .infra-card:nth-child(1),
.infra-grid-industry.visible .infra-card:nth-child(1) { transition-delay: 0.00s; }
.infra-grid-8.visible .infra-card:nth-child(2),
.infra-grid-industry.visible .infra-card:nth-child(2) { transition-delay: 0.06s; }
.infra-grid-8.visible .infra-card:nth-child(3),
.infra-grid-industry.visible .infra-card:nth-child(3) { transition-delay: 0.12s; }
.infra-grid-8.visible .infra-card:nth-child(4),
.infra-grid-industry.visible .infra-card:nth-child(4) { transition-delay: 0.18s; }
.infra-grid-8.visible .infra-card:nth-child(5) { transition-delay: 0.24s; }
.infra-grid-8.visible .infra-card:nth-child(6) { transition-delay: 0.30s; }
.infra-grid-8.visible .infra-card:nth-child(7) { transition-delay: 0.36s; }
.infra-grid-8.visible .infra-card:nth-child(8) { transition-delay: 0.42s; }

.infra-card {
  padding: 28px 22px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--grey-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.infra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--gold-light);
}

/* Uniform stat block across infra counter grids */
.infra-grid-8 .infra-stat,
.infra-grid-industry .infra-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  line-height: 1;
  color: var(--navy);
}

.infra-grid-8 .infra-count,
.infra-grid-industry .infra-count {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
}

.infra-grid-8 .infra-stat-unit,
.infra-grid-industry .infra-stat-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-500);
  letter-spacing: 0.5px;
}

@media (prefers-reduced-motion: reduce) {
  .infra-grid-8 .infra-card,
  .infra-grid-industry .infra-card {
    transition: opacity 0.2s ease;
    transform: none;
    transition-delay: 0s !important;
  }
}

.infra-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  color: var(--navy);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.infra-card:hover .infra-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.infra-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.infra-card p {
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .design-split { grid-template-columns: 1fr; }
  .design-image { height: 400px; }
  .design-text { padding: 60px 24px; }
  .vision-split { grid-template-columns: 1fr; }
  .vision-image { height: 400px; }
  .vision-text { padding: 60px 24px; }
  .amenity-carousel .carousel-slide { width: 500px; height: 340px; }
  .amenity-carousel .carousel-slide.prev { transform: translate(-50%, -50%) translateX(-320px) scale(0.75); }
  .amenity-carousel .carousel-slide.next { transform: translate(-50%, -50%) translateX(320px) scale(0.75); }
  .amenity-carousel .carousel-slide.far-prev, .amenity-carousel .carousel-slide.far-next { opacity: 0; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-visual { position: static; }
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-header { grid-template-columns: 1fr; gap: 24px; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
  .carousel-slide { width: 500px; height: 340px; }
  .carousel-slide.prev { transform: translate(-50%, -50%) translateX(-320px) scale(0.75) rotateY(10deg); }
  .carousel-slide.next { transform: translate(-50%, -50%) translateX(320px) scale(0.75) rotateY(-10deg); }
  .carousel-slide.far-prev, .carousel-slide.far-next { opacity: 0; }
  .developers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --header-height: 64px;
  }

  .floating-cta { display: flex; }
  body { padding-bottom: 72px; }

  /* Hero */
  .hero-content { margin-top: 5vh; }
  .hero-logo { max-width: 180px; margin-bottom: 16px; }
  .hero-ctas .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  .hero-ticket-group { position: static; margin: 28px auto 0; left: auto; right: auto; bottom: auto; padding: 0 20px; }
  .hero-ticket-tagline { font-size: 0.72rem; }
  .hero-ticket { margin-top: 8px; }
  .hero-ticket-value { font-size: 1.1rem; }
  .hero-rera-strip { flex-wrap: wrap; text-align: center; justify-content: center; padding: 6px 16px; }
  .hero-rera-strip span { font-size: 0.55rem; }
  .hero-rera-qr { width: 28px; height: 28px; }
  .hero-scroll-indicator { display: none; }

  /* Design Philosophy */
  .design-split { grid-template-columns: 1fr; }
  .design-image { height: 280px; }
  .design-text { padding: 40px 20px; }
  .design-description { font-size: 0.95rem; }
  .design-text-slides { min-height: 0; }
  .design-text-slide {
    position: relative;
    inset: auto;
    display: none;
  }
  .design-text-slide.is-active { display: block; }

  /* Map — touch-friendly */
  .location-map-full { cursor: default; overflow: auto; -webkit-overflow-scrolling: touch; }
  .location-map-fullimg { min-width: 600px; }
  .map-zoom-hint { display: none; }
  .map-gmaps-nudge { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); position: absolute; bottom: 12px; font-size: 0.75rem; padding: 8px 16px; }

  /* Proximity */
  .proximity { padding: 64px 0; }
  .proximity-accordion { margin-top: 32px; }
  .proximity-toggle h3 { font-size: 0.95rem; }
  .proximity-content { grid-template-columns: 1fr; column-gap: 0; row-gap: 20px; }
  .proximity-content.open { max-height: 1600px; }
  .proximity-content li { font-size: 0.8rem; padding: 6px 0; }
  .proximity-visual { max-width: 100%; aspect-ratio: 3 / 2; }
  .proximity-visual::before { display: none; }
  .proximity-visual-label { display: none; }

  /* Infra */
  .infra-grid { grid-template-columns: 1fr; }
  .infra-card { padding: 24px 20px; }
  .infra-journey-line { left: 44px; width: 2px; right: auto; }

  /* Vision / Project Highlights */
  .vision-split { grid-template-columns: 1fr; }
  .vision-image { height: 280px; }
  .vision-text { padding: 40px 20px; }
  .vision-stats-inline { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 2rem; }
  .stat-unit { font-size: 0.7rem; letter-spacing: 1.5px; }

  /* Amenities */
  .amenities { padding: 64px 0; }
  .amenities-heading { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
  .amenity-carousel { height: 300px; margin: 32px 0 24px; }
  .amenity-carousel .carousel-slide { width: 260px; height: 190px; }
  .amenity-carousel .carousel-slide.prev { transform: translate(-50%, -50%) translateX(-170px) scale(0.7); }
  .amenity-carousel .carousel-slide.next { transform: translate(-50%, -50%) translateX(170px) scale(0.7); }
  .amenity-carousel .carousel-slide.far-prev, .amenity-carousel .carousel-slide.far-next { opacity: 0; }
  .amenity-carousel .carousel-btn { width: 36px; height: 36px; }
  .amenity-carousel .carousel-prev { left: 4px; }
  .amenity-carousel .carousel-next { right: 4px; }
  .amenity-columns { grid-template-columns: 1fr; }
  .amenity-level-header h3 { font-size: 1.4rem; }
  .amenity-tag { padding: 8px 14px; font-size: 0.8rem; }

  /* Floor Plans */
  .floor-plan-stage { height: 280px; }
  .floor-plan-card { width: 380px; }
  .floor-plan-card-back-left { transform: translate(-50%, -50%) translateX(-180px) scale(0.72) rotateY(10deg); }
  .floor-plan-card-back-right { transform: translate(-50%, -50%) translateX(180px) scale(0.72) rotateY(-10deg); }
  .floor-plan-overlay-text { font-size: 1.1rem; }
  .floor-plan-lock { width: 48px; height: 48px; }
  .floor-plan-lock svg { width: 24px; height: 24px; }
  .floor-plan-label { font-size: 0.65rem; padding: 5px 8px; }

  /* Developers */
  .developers-grid { grid-template-columns: 1fr; }
  .dev-card { padding: 36px 24px; }
  .dev-logo-img { height: 60px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-disclaimer-section { grid-template-columns: 1fr; text-align: center; }
  .disclaimer-qr { margin: 0 auto; }
  .disclaimer-text { font-size: 0.7rem; }

  /* Side widget — above floating CTA */
  .side-widget { bottom: 80px; right: 16px; }
  .side-widget-btn { width: 42px; height: 42px; }

  .modal { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
  .hero-content { margin-top: 0; }
  .hero-logo { max-width: 150px; margin-bottom: 16px; }
  .hero-ticket-value { font-size: 1rem; }
  .hero-ticket-item { padding: 10px 14px; }

  .floor-plan-stage { height: 220px; }
  .floor-plan-card { width: 300px; }
  .floor-plan-card-back-left { transform: translate(-50%, -50%) translateX(-100px) scale(0.6) rotateY(10deg); opacity: 0.7; }
  .floor-plan-card-back-right { transform: translate(-50%, -50%) translateX(100px) scale(0.6) rotateY(-10deg); opacity: 0.7; }

  .section-heading { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .design-image { height: 220px; }
  .vision-image { height: 220px; }

  .stat-number { font-size: 1.8rem; }
  .vision-stats-inline { gap: 12px; }
  .stat-inline { min-width: 70px; }

  .amenity-carousel { height: 260px; }
  .amenity-carousel .carousel-slide { width: 220px; height: 160px; }
  .amenity-carousel .carousel-slide.prev { transform: translate(-50%, -50%) translateX(-140px) scale(0.65); }
  .amenity-carousel .carousel-slide.next { transform: translate(-50%, -50%) translateX(140px) scale(0.65); }

  .amenities-tabs { gap: 6px; }
  .tab-btn { padding: 10px 14px; font-size: 0.65rem; letter-spacing: 1px; }

  .dev-stats { grid-template-columns: 1fr; gap: 16px; }

  .infra-card h4 { font-size: 0.95rem; }
  .infra-card p { font-size: 0.8rem; }

  .floor-plan-overlay-text { font-size: 0.95rem; }
  .floor-plan-overlay-sub { font-size: 0.75rem; }

  .footer-logo-img { height: 100px; }
}

/* ===== Sector Zero Advantage + 5 Acre Holistic Ecosystem ===== */
.advantage {
  padding: 100px 0;
  background: var(--warm-bg);
}
.advantage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.advantage-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 16px;
}
.advantage-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  color: var(--burgundy);
  margin-bottom: 40px;
  font-weight: 500;
}
.advantage-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}
.advantage-grid-4 { grid-template-columns: repeat(4, 1fr); }
.advantage-grid-3 { grid-template-columns: repeat(3, 1fr); }
.advantage-card {
  text-align: center;
  padding: 20px 8px;
}
.advantage-card-wide {
  max-width: 360px;
  margin: 8px auto 0;
}
.advantage-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--grey-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 16px;
}
.advantage-card h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.advantage-card p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--grey-500);
}
@media (max-width: 900px) {
  .advantage-split { grid-template-columns: 1fr; gap: 64px; }
  .advantage-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .advantage { padding: 70px 0; }
  .advantage-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .advantage-heading { font-size: 1.65rem; }
}

/* ===== Design Philosophy Slideshow (split: image left, text right) ===== */
.design-image {
  position: relative;
}
.design-img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
.design-img-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.design-img-slide > img,
.design-img-slide .design-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.design-img-slide .design-slide-img {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8a 50%, #c9a96e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.design-slide-placeholder {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.design-slide-placeholder small {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  opacity: 0.75;
  letter-spacing: 0.18em;
}
.design-text-slides {
  position: relative;
  min-height: 380px;
  width: 100%;
}
.design-text-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 500ms ease, transform 500ms ease, visibility 0s linear 500ms;
  pointer-events: none;
}
.design-text-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 500ms ease, transform 500ms ease, visibility 0s linear 0s;
}
.design-text-slide .design-slide-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.design-text-slide .section-heading {
  margin-bottom: 20px;
}
.design-slide-dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}
.design-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grey-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 200ms ease;
}
.design-slide-dot.is-active {
  background: var(--navy);
  width: 18px;
  border-radius: 3px;
}
@media (max-width: 900px) {
  .design-text-slides { min-height: 260px; }
}

/* ============================================
   MOBILE OVERRIDES — keep at end of file so source order wins
   Fixes: hero stacking, slideshow text/button overlap, golden-blob CTA
   ============================================ */
@media (max-width: 768px) {
  /* --- DESIGN SLIDESHOW: image aspect-ratio + dots sit between image and text --- */
  .design-split {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .design-image {
    height: auto;
    aspect-ratio: 4 / 5;
    width: 100%;
    background: var(--white);
  }
  .design-image img { height: 100%; width: 100%; object-fit: contain; object-position: center; }
  .design-text {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  /* Reorder: dots first (right under image), then label, slides, button */
  .design-text .section-label { order: 2; padding: 20px 20px 0; }
  .design-text .design-text-slides { order: 3; padding: 0 20px; }
  .design-text .design-slide-dots { order: 1; justify-content: center; margin: 20px 0 8px; }
  .design-text > .btn { order: 4; margin: 24px 20px 0; }

  /* --- HEADER: cap logo so it doesn't blow out viewport width --- */
  .header-inner {
    width: 100%;
    max-width: 100vw;
    padding: 0 16px;
    gap: 12px;
    box-sizing: border-box;
  }
  .header-logos { min-width: 0; flex: 1 1 auto; overflow: hidden; }
  .header-logo-img { height: 48px; max-width: 65vw; object-fit: contain; object-position: left center; }
  .mobile-menu-btn { flex: 0 0 auto; }

  /* --- HERO: stack children vertically so ticket-group doesn't crowd hero-content --- */
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 96px;
    min-height: 100vh;
  }
  .hero-content {
    margin-top: 0;
    padding: 16px 20px 0;
    width: 100%;
  }
  .hero-ticket-group {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 24px auto 0;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 20px;
    text-align: center;
  }
  .hero-ticket { display: inline-flex; }

  /* --- DESIGN SLIDESHOW: natural flow, active slide only, auto height --- */
  .design-text-slides {
    min-height: 0 !important;
    position: static;
  }
  .design-text-slide {
    position: static !important;
    inset: auto !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: none !important;
  }
  .design-text-slide.is-active {
    display: block !important;
  }

  /* --- GOLDEN BLOB: ENQUIRE NOW must not stretch full width --- */
  .design-text .btn,
  .design-text > .btn {
    align-self: flex-start;
    width: auto;
    max-width: fit-content;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 80px; }
  .hero-ticket-group { margin-top: 20px; }
  .design-text .btn,
  .design-text > .btn {
    align-self: center;
    margin: 0 auto;
  }
}
