/* ═══════════════════════════════════════════════════════
   CLOUD VIEW 75 — style.css
   Premium Office Space · Sector 75, Mohali
   Theme: Luxury Gold × Charcoal
   Colors: #0F0F0F · #FFCD32 · #FFD85C · #FFFFFF
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --gold:     #FFCD32;
  --softgold: #FFD85C;
  --dark:     #0F0F0F;
  --white:    #FFFFFF;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Manrope', sans-serif; color: #334155; background: #ffffff; overflow-x: hidden; max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--softgold); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  background: #ffdc59;
  border-bottom: 1px solid rgba(230, 184, 0, 0.55);
  box-shadow: 0 2px 24px rgba(230, 184, 0, 0.28), 0 1px 0 rgba(255, 215, 0, 0.18) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-container {
  height: 110px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-logo-img {
  height: 90px;
  width: auto;
  max-width: 260px;
  min-height: 90px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transform: scale(1.4);
  transform-origin: left center;
  margin-right: 40px;
  transition: opacity 0.3s;
}
.navbar-logo-wrap {
  display: flex;
  align-items: center;
  overflow: visible;
}
#navbar.scrolled .navbar-logo-img {
  height: 70px;
  min-height: 70px;
}

.footer-logo-img {
  display: block !important;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  /* No filter — render the logo naturally on the dark footer */
  filter: none;
  opacity: 1;
  visibility: visible !important;
}

.navbar-brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.3s;
}

.navbar-phone-cta {
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0em;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF !important;
  border: 1px solid rgba(255, 205, 50, 0.55) !important;
  color: #C8920E !important;
}
.navbar-phone-cta svg {
  color: #C8920E !important;
  stroke: currentColor;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-phone-cta:hover {
  background: #0F0F0F !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 205, 50, 0.22);
}
.navbar-phone-cta:hover svg {
  color: var(--gold) !important;
}

#navbar.scrolled .navbar-container {
  height: 84px;
}

/* Hamburger Animation */
.ham-line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #0F0F0F;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#hamburger.open .ham-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#hamburger.open .ham-line:nth-child(3) {
  width: 24px;
  transform: translateY(-8px) rotate(-45deg);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-bg {
  background: white;
}
#hero {
  padding-top: 80px;
}
.hero-grid {
  background-image:
    linear-gradient(rgba(255, 205, 50, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 205, 50, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(255, 205, 50, 0.14);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 350px; height: 350px;
  background: rgba(255, 216, 92, 0.09);
  bottom: 50px; left: 10%;
  animation-delay: 3s;
}
.blob-3 {
  width: 250px; height: 250px;
  background: rgba(15, 15, 15, 0.05);
  top: 40%; left: 45%;
  animation-delay: 5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Hero image stack */
.hero-card-stack {
  position: relative;
  width: 380px;
  height: 480px;
}
.hero-img-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.card-back {
  width: 300px; height: 380px;
  top: 60px; right: 0;
  transform: rotate(6deg);
  opacity: 0.5;
}
.card-front {
  width: 340px; height: 420px;
  top: 0; left: 0;
  transform: rotate(-1deg);
  z-index: 10;
  box-shadow: 0 30px 80px rgba(255, 205, 50, 0.22);
}
.hero-img-card:hover {
  transform: rotate(0deg) translateY(-8px) !important;
}
.hero-img-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}
.img-bg-1 { background-image: url('images/11.webp'); }
.img-bg-2 { background-image: url('images/11.webp'); }

.hero-card-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: linear-gradient(135deg, rgba(15,15,15,0.88), rgba(15,15,15,0.75));
  border: 1px solid rgba(255, 205, 50, 0.40);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 8px 14px;
  z-index: 5;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, #E6A800 0%, #FFCD32 50%, #FFB300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.15em;
  overflow: visible;
}

/* Scroll bounce */
@keyframes bounce-slow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.animate-bounce-slow {
  animation: bounce-slow 2s ease-in-out infinite;
}

/* ── Buttons ── */
.hero-btn-outline {
  transition: background 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-btn-outline:hover {
  background: #0F0F0F;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 205, 50, 0.28);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--dark);
  transition: background-color 0.2s ease;
}
.btn-gold:hover {
  background-color: #E6B800;
}

.btn-orange {
  background-color: var(--gold);
  color: var(--dark);
  transition: background-color 0.2s ease;
}
.btn-orange:hover {
  background-color: #E6B800;
}

.btn-deep {
  background-color: var(--dark);
  color: #ffffff;
  transition: background 0.2s ease;
}
.btn-deep:hover {
  background: #2a2a2a;
}

/* ══════════════════════════════════════
   MARQUEE / TRUSTED BY
══════════════════════════════════════ */
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-pill {
  background: #ffffff;
  border: 1px solid #ffe980;
  border-radius: 100px;
  padding: 10px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #9a7800;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(255, 205, 50, 0.07);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.brand-pill:hover {
  box-shadow: 0 4px 20px rgba(255, 205, 50, 0.16);
  border-color: var(--softgold);
}

/* ══════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
══════════════════════════════════════ */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fffbea, #fff0a0);
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--softgold);
}
.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-optical-sizing: auto;
}
.section-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-img-container { position: relative; }
.img-about-1 {
  background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=800&q=80');
  background-size: cover;
  background-position: center;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 10;
  background: rgba(15, 15, 15, 0.84);
  border: 1px solid rgba(255, 205, 50, 0.35);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 18px;
}
.about-stat-card {
  background: linear-gradient(135deg, #fffbea, #fff0a0);
  border: 1px solid rgba(255, 205, 50, 0.28);
  border-radius: 16px;
  padding: 18px 22px;
}

/* ══════════════════════════════════════
   WHY CHOOSE CARDS
══════════════════════════════════════ */
.why-card {
  background: linear-gradient(135deg, #fffef7 0%, #fffce8 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 205, 50, 0.18);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s, background 0.3s;
  box-shadow: 0 4px 24px rgba(255, 205, 50, 0.08);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 205, 50, 0.18);
  border-color: var(--softgold);
  background: linear-gradient(135deg, #fff8d6 0%, #fff0a0 100%);
}
.why-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #FFCD32, #E6B800);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F0F0F;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.why-icon-wrap svg {
  stroke: currentColor;
  transition: color 0.3s ease;
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, #E6B800, #C8A000);
  transform: scale(1.08);
  color: #0F0F0F;
}

/* ══════════════════════════════════════
   FEATURE / WORKSPACE CARDS
══════════════════════════════════════ */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  box-shadow: 0 4px 24px rgba(255, 205, 50, 0.05);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 205, 50, 0.14);
  border-color: var(--softgold);
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
}
.feature-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.feature-card:hover .feature-img {
  transform: scale(1.05);
}

.img-desk-1  { background-image: url('images/premium_cabin.webp'); }
.img-desk-2  { background-image: url('images/12.webp'); }
.img-desk-5  { background-image: url('images/premium_balcony.webp'); }
.img-desk-33 { background-image: url('images/33.webp'); }
.img-desk-34 { background-image: url('images/34.webp'); }
.img-desk-35 { background-image: url('images/35.webp'); }
.img-desk-36 { background-image: url('images/36.webp'); }
.img-desk-37 { background-image: url('images/37.webp'); }

/* ══════════════════════════════════════
   AMENITIES GRID
══════════════════════════════════════ */
.amenity-card {
  background: linear-gradient(135deg, #fffef7 0%, #fffce8 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 205, 50, 0.18);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s, background 0.3s;
  cursor: default;
}
.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255, 205, 50, 0.18);
  border-color: var(--softgold);
  background: linear-gradient(135deg, #fff8d6 0%, #fff0a0 100%);
}
.amenity-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #FFCD32, #E6B800);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F0F0F;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.amenity-icon svg {
  stroke: currentColor;
  transition: color 0.3s ease;
}
.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, #E6B800, #C8A000);
  color: #0F0F0F;
  transform: scale(1.1);
}
.amenity-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, #0a0a0a 0%, var(--dark) 50%, #1a1a1a 100%);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  pointer-events: none;
}
.stat-item { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-tall { grid-row: 1 / 3; }
.gallery-wide { grid-column: 2 / 4; }

.gallery-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.88) 0%, rgba(15,15,15,0.40) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-overlay-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.gallery-overlay-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 340px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}
.gallery-item:hover .gallery-overlay-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery images */
.img-g1 { background-image: url('images/premium_balcony.webp'); }
.img-g2 { background-image: url('images/9.webp'); }
.img-g3 { background-image: url('images/8.webp'); }
.img-g4 { background-image: url('images/7.webp'); }
.img-g5 { background-image: url('images/premium_cabin.webp'); }

.img-ws-33 { background-image: url('images/33.webp'); }
.img-ws-34 { background-image: url('images/34.webp'); }
.img-ws-35 { background-image: url('images/35.webp'); }
.img-ws-36 { background-image: url('images/36.webp'); }
.img-ws-37 { background-image: url('images/37.webp'); }

.img-workspace-6 { background-image: url('images/38.webp'); }

/* ── Mobile Navbar: Hamburger Button ── */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  transition: background 0.2s;
  padding: 0;
}

/* ── Mobile Navbar: Contact Button ── */
.mobile-contact-cta {
  background: #FFFFFF;
  border: 1px solid black;
  color: #000000;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-contact-cta svg {
  color: #000000;
  stroke: currentColor;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-contact-cta:hover {
  background: #0F0F0F;
  border-color: var(--gold);
  color: #ffcd32;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 205, 50, 0.22);
  transform: translateY(-2px);
}
.mobile-contact-cta:hover svg { color:  #ffcd32; }
.mobile-contact-cta:active {
  background: #0F0F0F;
  border-color: var(--gold);
  color: #ffcd32;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 205, 50, 0.22);
  transform: translateY(-1px);
}
.mobile-contact-cta:active svg { color: var(--gold); }

/* ══════════════════════════════════════
   WORKSPACE SHOWCASE SECTION
══════════════════════════════════════ */
.workspace-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.workspace-showcase-grid .gallery-tall { grid-row: 1 / 3; }
.workspace-showcase-grid .gallery-wide { grid-column: 2 / 4; }

/* ══════════════════════════════════════
   LOCATION SECTION
══════════════════════════════════════ */
.bg-gold-50 { background-color: #fffbea; }

.map-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #ffe980;
  box-shadow: 0 8px 40px rgba(255, 205, 50, 0.09);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  text-decoration: none;
}
.map-card:hover {
  box-shadow: 0 20px 60px rgba(255, 205, 50, 0.18);
  transform: translateY(-4px);
  border-color: var(--softgold);
}
.map-frame-wrap { display: block; line-height: 0; }
.map-cta-bar {
  background: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #ffe980;
}
.location-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 2px 12px rgba(255, 205, 50, 0.04);
}
.location-highlight-card:hover {
  border-color: var(--softgold);
  box-shadow: 0 8px 30px rgba(255, 205, 50, 0.09);
  transform: translateX(4px);
}
.lh-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}
.footer-link:hover {
  color: rgb(86, 87, 86);
  padding-left: 4px;
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.10s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.20s; }
.delay-250 { transition-delay: 0.25s; }
.delay-300 { transition-delay: 0.30s; }
.delay-350 { transition-delay: 0.35s; }
.delay-400 { transition-delay: 0.40s; }
.delay-500 { transition-delay: 0.50s; }
.delay-600 { transition-delay: 0.60s; }

/* ── Utilities ── */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 205, 50, 0.25);
}

a { transition: color 0.25s ease, opacity 0.25s ease; }
button { cursor: pointer; }
img { max-width: 100%; }

/* ══════════════════════════════════════
   LIGHTBOX MODAL — CAROUSEL VERSION
══════════════════════════════════════ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 56px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-modal.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 205, 50, 0.40);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}
.lightbox-close:hover {
  background: rgba(255, 205, 50, 0.25);
  transform: scale(1.1) rotate(90deg);
}
.lightbox-card-wrap {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  perspective: 1200px;
  transform: scale(0.88);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-modal.open .lightbox-card-wrap {
  transform: scale(1);
}
.lightbox-card {
  position: relative;
  background: #111;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,205,50,0.22),
    0 -2px 0 0 rgba(255,205,50,0.10) inset;
  transform: rotate(-0.6deg);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: min(82vw, 960px);
  max-height: 62vh;
}
.lightbox-modal.open .lightbox-card {
  transform: rotate(0deg);
}
.lb-track {
  display: flex;
  width: 100%;
  will-change: transform;
}
.lb-track .lightbox-img {
  flex-shrink: 0;
  width: 100%;
}
.lightbox-img {
  display: block;
  max-width: min(82vw, 960px);
  max-height: 62vh;
  width: auto;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform: scale(1);
}
.lightbox-img.switching {
  opacity: 0;
  transform: scale(0.96);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.75);
  border: 1px solid rgba(255, 205, 50, 0.40);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  backdrop-filter: blur(8px);
  opacity: 0.7;
}
.lightbox-nav:hover {
  background: rgba(255, 205, 50, 0.28);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
.lightbox-nav-prev { left: 16px; }
.lightbox-nav-next { right: 16px; }
.lightbox-counter {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  background: rgba(15,15,15,0.72);
  border: 1px solid rgba(255,205,50,0.35);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}
.lightbox-trigger { cursor: pointer; }

/* ── Filmstrip ── */
.lb-film {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  max-width: min(86vw, 860px);
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lb-film::-webkit-scrollbar { display: none; }
.lb-film-track {
  display: flex;
  gap: 7px;
  padding: 2px 2px 4px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
}
.lb-frame {
  flex-shrink: 0;
  width: 66px; height: 48px;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.40;
  transition: opacity 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.45);
}
.lb-frame:hover {
  opacity: 0.78;
  transform: translateY(-2px);
  border-color: rgba(255,205,50,0.55);
}
.lb-frame.active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--gold), 0 5px 14px rgba(255,205,50,0.30);
}

/* ══════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════ */
.hero-carousel {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-carousel-slide.active { opacity: 1; }
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.72);
  border: 1px solid rgba(255, 205, 50, 0.38);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0;
  backdrop-filter: blur(6px);
}
#heroCarouselCard:hover .hero-carousel-btn { opacity: 1; }
.hero-carousel-btn:hover {
  background: rgba(255, 205, 50, 0.30);
  transform: translateY(-50%) scale(1.1);
}
.hero-carousel-prev { left: 10px; }
.hero-carousel-next { right: 10px; }
.hero-carousel-dots {
  position: absolute;
  bottom: 52px; right: 16px;
  z-index: 20;
  display: flex;
  gap: 5px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ══════════════════════════════════════
   ABOUT CAROUSEL
══════════════════════════════════════ */
.about-carousel { position: relative; }
.about-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-carousel-slide.active { opacity: 1; }
.about-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.70);
  border: 1px solid rgba(255, 205, 50, 0.38);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0;
  backdrop-filter: blur(6px);
}
#aboutCarousel:hover .about-carousel-btn { opacity: 1; }
.about-carousel-btn:hover {
  background: rgba(255, 205, 50, 0.30);
  transform: translateY(-50%) scale(1.1);
}
.about-carousel-prev { left: 12px; }
.about-carousel-next { right: 12px; }
.about-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 6px;
}

/* ══════════════════════════════════════
   GLOBAL SVG ICON COLORS
══════════════════════════════════════ */
svg {
  transition: color 0.3s ease, stroke 0.3s ease, fill 0.3s ease;
}
.why-icon-wrap svg { stroke: currentColor !important; fill: none; }
.amenity-icon svg  { stroke: currentColor !important; fill: none; }
.feature-icon-wrap { color: #E6B800; }
.feature-icon-wrap svg { stroke: currentColor !important; fill: none; }
.feature-card:hover .feature-icon-wrap { color: #B8920A; }
.lh-icon svg {
  color: #8a700a !important;
  stroke: currentColor;
  transition: color 0.25s ease;
}
.location-highlight-card:hover .lh-icon svg { color: #B8920A !important; }
footer li svg {
  color: #292928 !important;
  stroke: currentColor;
  transition: color 0.25s ease;
}
.footer-contact-icon {
  color: #292928 !important;
  stroke: currentColor;
  transition: color 0.25s ease;
}

/* ══════════════════════════════════════
   UTILITY & LAYOUT CLASSES
══════════════════════════════════════ */
.body-base {
  font-family: 'Manrope', sans-serif;
  color: #f7faff;
  background: #ffffff;
  overflow-x: hidden;
}

.container-xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.px-std {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-py {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-overflow {
  position: relative;
  overflow: hidden;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.abs-inset {
  position: absolute;
  inset: 0;
}

.bg-white    { background: #ffffff; }
.bg-slate-50 { background: #f8fafc; }

.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-5  { margin-top: 1.25rem; }
.mt-8  { margin-top: 2rem; }
.gap-6  { gap: 1.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.items-center { align-items: center; }

/* ── Grid layouts ── */
.grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* ── Icon sizes ── */
.icon-xs { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
.icon-sm { width: 1rem;     height: 1rem;     flex-shrink: 0; }
.icon-md { width: 1.5rem;   height: 1.5rem;   flex-shrink: 0; }
.icon-lg { width: 1.75rem;  height: 1.75rem;  flex-shrink: 0; }

.flex-row   { display: flex; flex-direction: row; }
.flex-col   { display: flex; flex-direction: column; }
.inline-flex { display: inline-flex; align-items: center; }

.hidden { display: none !important; }

.marquee-item { display: flex; align-items: center; }
.counter { display: inline; }

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-img-wrap { width: 100%; }

/* ══════════════════════════════════════
   NAVBAR REPLACEMENT CLASSES
══════════════════════════════════════ */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(15, 15, 15, 0.80);
}

.nav-link {
  color: rgba(15,15,15,0.80);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
}
.nav-link:hover,
.nav-link.text-brand-dark,
.nav-link.font-bold {
  color: rgba(15,15,15,0.60);
}
.nav-link.text-brand-dark.font-bold {
  color: #0F0F0F;
  font-weight: 700;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-contact-label {
  display: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(15,15,15,0.70);
}

.navbar-phone-cta {
  display: none;
}

/* Ham line short */
.ham-line-short { width: 1rem; }

/* Mobile Menu */
.mobile-menu {
  border-top: 1px solid rgba(0,0,0,0.15);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #0c0c0c;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  display: block;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: rgba(15,15,15,0.50); }

/* ══════════════════════════════════════
   HERO REPLACEMENT CLASSES
══════════════════════════════════════ */
.hero-grid-opacity { opacity: 0.40; }

.hero-content-wrap {
  position: relative;
  z-index: 10;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.07;
  letter-spacing: -0.03em;
  font-optical-sizing: auto;
  overflow: visible;
}
.hero-h1-line {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 0.1em;
}
.hero-h1-line:last-child { margin-bottom: 0; }

.hero-subtext {
  font-family: 'Manrope', sans-serif;
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

/* ══════════════════════════════════════
   FIX 1: HERO TEXT — DESKTOP IMPROVEMENT
   Tightens typography for a premium, editorial feel.
   Scoped to desktop only (min-width: 750px).
══════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-heading {
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    overflow: visible;
  }
  .hero-h1-line {
    font-size: clamp(2.5rem, 3.8vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.05em;
    overflow: visible;
  }
  .hero-h1-line:last-child {
    margin-bottom: 0;
  }
  .hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 28rem;
    margin-bottom: 2rem;
  }
  .hero-cta-group {
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .hero-h1-line {
    font-size: clamp(2.75rem, 3.6vw, 4rem);
  }
  .hero-subtext {
    font-size: 1rem;
    max-width: 30rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  text-decoration: none;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #334155;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border: 1px solid #000000;
  text-decoration: none;
}

.hero-card-col {
  display: none;
  justify-content: center;
  align-items: center;
}

.shadow-hero { box-shadow: 0 30px 80px rgba(255, 205, 50, 0.22); }

.hero-badge-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

/* ══════════════════════════════════════
   MARQUEE SECTION
══════════════════════════════════════ */
.marquee-section {
  padding-bottom: 2rem;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
  padding-top:2rem;
}
.marquee-label-wrap {
  margin-bottom: 2rem;
  text-align: center;
}
.marquee-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   FEATURE CARDS — BODY
══════════════════════════════════════ */
.card-body { padding: 1.5rem; }
.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
}
.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #FFCD32;
  font-size: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: gap 0.2s ease;
}
.learn-more-link:hover { gap: 0.5rem; }
.feature-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #FFCD32;
  color: #0F0F0F;
  font-size: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

/* ══════════════════════════════════════
   WHY SECTION
══════════════════════════════════════ */
.why-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.why-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   ABOUT SECTION — BODY
══════════════════════════════════════ */
.about-body-text {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #977819;
}
.about-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.about-badge-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
  line-height: 1;
}
.about-badge-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: #FFD85C;
  display: block;
  margin-top: 0.125rem;
}

/* ══════════════════════════════════════
   AMENITIES GRID
══════════════════════════════════════ */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stats-cell { text-align: center; }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #ffffff;
}
.stat-label {
  color: #FFD85C;
  font-size: 0.875rem;
  font-family: 'Manrope', sans-serif;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   LOCATION SECTION
══════════════════════════════════════ */
.section-sub-constrained { max-width: 36rem; margin-left: auto; margin-right: auto; }
.section-sub-wide        { max-width: 42rem; margin-left: auto; margin-right: auto; }

.location-highlights-col { display: flex; flex-direction: column; gap: 0; }
.location-highlight-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0f172a;
}
.location-highlight-sub {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 0.5rem;
}
.location-cards-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.lh-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.875rem;
}
.lh-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.125rem;
}
.location-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  margin-top: 1rem;
}
.map-pin-icon {
  width: 2.25rem; height: 2.25rem;
  background: #FFCD32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0F0F0F;
}
.map-cta-info { display: flex; align-items: center; gap: 0.75rem; }
.map-place-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.875rem;
}
.map-place-addr { font-size: 0.75rem; color: #64748b; }
.map-directions-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.625rem 1rem;
  white-space: nowrap;
  text-decoration: none;
}

/* ══════════════════════════════════════
   FOOTER REPLACEMENT CLASSES
══════════════════════════════════════ */
.footer-base {
  background: #ffdc59;
  color:#000000;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.footer-brand-col { grid-column: span 1; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.footer-col-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; }
.footer-contact-item-start { align-items: flex-start; }
.footer-contact-icon { margin-top: 0.125rem; }
.footer-contact-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact-link:hover { color: #242424; }
.footer-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  color: #000000;
  font-size: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-maps-link:hover { color: #272726; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: #000000; }
.footer-legal-links { display: flex; gap: 1.25rem; font-size: 0.75rem; }
.footer-legal-link {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal-link:hover { color: #FFD85C; }


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints:
     xs  — max 479px   (small phones)
     sm  — 480–749px   (large phones)  → handled in mobile block below
     md  — 750–1023px  (tablets)
     lg  — 1024–1279px (laptops)
     xl  — 1280–1439px (large desktop)
     2xl — 1440px+     (large monitors)
════════════════════════════════════════════════════════════════ */

/* ── DESKTOP DEFAULTS — min-width: 750px ──────────────────────
   Scoped inside a media query so mobile is never affected.
─────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .hamburger-btn { display: none; }
  .mobile-menu { display: none !important; }

  .navbar-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 1.125rem;
    text-decoration: none;
    border-radius: 6px;
  }

  .navbar-contact-label { display: inline; }
  .hero-card-col { display: flex; }
  .hero-cta-group { flex-direction: row; }

  .hero-content-wrap {
    grid-template-columns: 45fr 55fr;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
    gap: 2.5rem;
  }

  .hero-subtext { font-size: 0.9375rem; max-width: 30rem; }
  .px-lg { padding-left: 2rem; padding-right: 2rem; }

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

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stats-cell { padding-left: 1.5rem; padding-right: 1.5rem; text-align: center; }
  .stats-cell + .stats-cell { border-left: 1px solid rgba(255,255,255,0.20); }

  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: row; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
  }
  .gallery-tall { grid-row: 1 / 3; }
  .gallery-wide { grid-column: 2 / 4; }

  .workspace-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px 250px;
  }
  .workspace-showcase-grid .gallery-tall { grid-row: 1 / 3; }
  .workspace-showcase-grid .gallery-wide { grid-column: 2 / 4; }
  .workspace-showcase-grid .gallery-item { min-height: auto; }

  .map-cta-bar { flex-direction: row; align-items: center; }
  .location-maps-btn { width: auto; }
}


/* ── TABLET — 750px to 1023px ─────────────────────────────── */
@media (min-width: 1024px) {

  /* Navbar */
  .navbar-container { height: 84px; padding-left: 1.5rem; padding-right: 1.5rem; }
  #navbar.scrolled .navbar-container { height: 70px; }
  .desktop-nav { gap: 1.125rem; }
  .nav-link { font-size: 0.8125rem; }
  .navbar-phone-cta { font-size: 0.8125rem; padding: 0.4375rem 0.875rem; }
  .navbar-contact-label { display: none; }
  .px-lg { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* Hero */
  .hero-content-wrap {
    grid-template-columns: 45fr 55fr;
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
    gap: 1.75rem;
  }
  .hero-h1-line { font-size: clamp(1.75rem, 3.6vw, 2.5rem) !important; line-height: 1.1 !important; overflow: visible !important; }
  .hero-subtext { font-size: 0.875rem !important; max-width: 100%; line-height: 1.65 !important; margin-bottom: 1.75rem; }
  .hero-heading { margin-bottom: 1rem; }
  .hero-card-stack { width: 280px; height: 360px; }
  .card-front { width: 255px; height: 320px; }
  .card-back  { width: 210px; height: 275px; }
  .hero-carousel-dots { bottom: 40px; }

  /* Sections */
  .section-py { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .section-heading { font-size: clamp(1.5rem, 3vw, 2.1rem); }
  .section-header { margin-bottom: 2.5rem; }
  .section-sub { font-size: 0.9375rem; }

  /* Gallery */
  .gallery-grid { grid-template-rows: 195px 195px; gap: 12px; }
  .workspace-showcase-grid { grid-template-rows: 200px 200px; gap: 12px; }

  /* Grids */
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .amenity-card { padding: 18px 14px; }
  .amenity-label { font-size: 11.5px; }

  /* Stats */
  .stats-cell { padding-left: 1.25rem; padding-right: 1.25rem; }
  .stat-number { font-size: 2.25rem; }
  .stat-label { font-size: 0.8125rem; }

  /* Why / Feature cards */
  .why-card { padding: 22px; }
  .feature-img { height: 165px; }

  /* About */
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-stat-number { font-size: 1.625rem; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-logo-img { height: 60px; }
  .footer-base { padding-top: 3.5rem; }
}


/* ── LAPTOP — 1024px to 1279px ────────────────────────────── */
@media (min-width: 1024px) {

  /* Navbar */
  .navbar-container { height: 94px; padding-left: 2.25rem; padding-right: 2.25rem; }
  #navbar.scrolled .navbar-container { height: 78px; }
  .desktop-nav { gap: 1.5rem; }
  .nav-link { font-size: 0.9rem; }
  .navbar-phone-cta { font-size: 0.875rem; padding: 0.5rem 1rem; }
  .px-lg { padding-left: 2.25rem; padding-right: 2.25rem; }

  /* Hero */
  .hero-content-wrap {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
    gap: 2.5rem;
  }
  .hero-h1-line { font-size: clamp(2.1rem, 3.2vw, 2.85rem) !important; line-height: 1.09 !important; overflow: visible !important; }
  .hero-subtext { font-size: 0.9375rem !important; max-width: 28rem; line-height: 1.7 !important; }
  .hero-card-stack { width: 330px; height: 415px; }
  .card-front { width: 300px; height: 375px; }
  .card-back  { width: 250px; height: 320px; }

  /* Sections */
  .section-py { padding-top: 4rem; padding-bottom: 4rem; }
  .section-heading { font-size: clamp(1.65rem, 2.6vw, 2.4rem); }

  /* Gallery */
  .gallery-grid { grid-template-rows: 245px 245px; }
  .workspace-showcase-grid { grid-template-rows: 255px 255px; }

  /* Amenities */
  .amenity-card { padding: 20px 14px; }
  .amenity-label { font-size: 11.5px; }

  /* Stats */
  .stats-cell { padding-left: 1.75rem; padding-right: 1.75rem; }
  .stat-number { font-size: 2.75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-logo-img { height: 90px; }
}


/* ── LARGE DESKTOP — 1280px to 1439px ─────────────────────── */
@media (min-width: 1024px) {

  /* Navbar */
  .navbar-container { height: 102px; padding-left: 2.75rem; padding-right: 2.75rem; }
  #navbar.scrolled .navbar-container { height: 84px; padding-left: 1.5rem; padding-right: 1.5rem; }
  .desktop-nav { gap: 1.875rem; }
  .nav-link { font-size: 0.9375rem; }
  .px-lg { padding-left: 2.75rem; padding-right: 2.75rem; }

  /* Hero */
  .hero-content-wrap { padding-top: 3.5rem; padding-bottom: 5rem; gap: 3rem; }
  .hero-h1-line { font-size: clamp(2.4rem, 3.3vw, 3.25rem) !important; overflow: visible !important; }
  .hero-subtext { font-size: 1rem !important; max-width: 30rem; }

  /* Sections */
  .section-py { padding-top: 5rem; padding-bottom: 5rem; }
  .section-heading { font-size: clamp(1.875rem, 2.6vw, 2.625rem); }

  /* Gallery */
  .gallery-grid { grid-template-rows: 275px 275px; }
  .workspace-showcase-grid { grid-template-rows: 285px 285px; }

  /* Stats */
  .stats-cell { padding-left: 2.25rem; padding-right: 2.25rem; }
  .stat-number { font-size: 3rem; }

  /* Amenities */
  .amenity-card { padding: 24px 16px; }
  .footer-logo-img { height: 76px; }
}


/* ── LARGE MONITOR — 1440px+ ──────────────────────────────── */
@media (min-width: 1440px) {

  .container-xl { max-width: 88rem; }
  .px-lg { padding-left: 3.5rem; padding-right: 3.5rem; }

  /* Navbar */
  .navbar-container { height: 110px; padding-left: 3.5rem; padding-right: 3.5rem; }
  #navbar .navbar-logo-img { height: 90px; min-height: 90px; max-width: 280px; }
  #navbar.scrolled .navbar-logo-img { height: 70px; min-height: 70px; }
  #navbar.scrolled .navbar-container { height: 86px; }
  .desktop-nav { gap: 2.25rem; }
  .nav-link { font-size: 1rem; }
  .navbar-phone-cta { font-size: 0.9375rem; padding: 0.5625rem 1.25rem; }

  /* Hero */
  .hero-content-wrap { padding-top: 4rem; padding-bottom: 6rem; gap: 4rem; }
  .hero-h1-line { font-size: clamp(2.875rem, 3.3vw, 3.875rem) !important; overflow: visible !important; }
  .hero-subtext { font-size: 1.0625rem !important; max-width: 32rem; }
  .hero-card-stack { width: 420px; height: 520px; }
  .card-front { width: 380px; height: 460px; }
  .card-back  { width: 320px; height: 400px; }

  /* Sections */
  .section-py { padding-top: 6rem; padding-bottom: 6rem; }
  .section-heading { font-size: clamp(2.4rem, 2.8vw, 3.25rem); }
  .section-header { margin-bottom: 4.5rem; }

  /* Gallery */
  .gallery-grid { grid-template-rows: 320px 320px; }
  .workspace-showcase-grid { grid-template-rows: 340px 340px; }

  /* Stats */
  .stats-cell { padding-left: 3rem; padding-right: 3rem; }
  .stat-number { font-size: 3.5rem; }

  /* Cards */
  .feature-img { height: 220px; }
  .why-card { padding: 36px; }
  .amenity-card { padding: 28px 20px; }
  .amenity-icon { width: 64px; height: 64px; }

  /* Footer */
  .footer-base { padding-top: 6rem; }
  .footer-logo-img { height: 65px; max-width: 250px; }
}


/* ═══════════════════════════════════════════════════
   MOBILE — max-width: 749px
   Single consolidated block for all mobile overrides.
═══════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* ── NAVBAR ── */
  #navbar .navbar-container {
    height: 76px !important;
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  #navbar .navbar-logo-wrap {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  #navbar .navbar-logo-img {
    display: block !important;
    height: 100px !important;
    min-height: 80px !important;
    width: auto !important;
    max-width: 110px !important;
    min-width: 60px !important;
    transform: none !important;
    margin-right: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  /* ── HAMBURGER / MOBILE MENU ── */
  .desktop-nav  { display: none !important; }
  .hamburger-btn {
    display: flex !important;
    background: rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.18);
  }
  .hamburger-btn:hover  { background: rgba(0, 0, 0, 0.20); }
  .hamburger-btn.open   { background: rgba(0, 0, 0, 0.18); }
  .navbar-phone-cta     { display: none !important; }
  .navbar-contact-label { display: none !important; }

  .mobile-menu {
    padding: 1.25rem;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-contact-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    text-align: center;
    margin-top: 0.25rem;
    overflow: visible;
  }

  .mobile-contact-cta .icon-sm {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
  }

  /* ── HERO ── */
  #hero {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    min-height: auto !important;
    align-items: flex-start !important;
    overflow-x: hidden;
  }

  .hero-content-wrap {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-top: 0.75rem;
    padding-bottom: 1rem;
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
  }

  .hero-heading {
    margin-bottom: 0.875rem;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.1;
    width: 100%;
    overflow: visible;
  }

  .hero-h1-line {
    font-size: 7.5vw !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    display: block !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    overflow: visible !important;
  }

  .hero-subtext {
    font-size: 0.875rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1.5rem;
    max-width: 100%;
    color: #64748b;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.625rem;
    align-items: stretch;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 8px !important;
  }

  .hero-card-col  { display: none !important; }
  .hero-card-stack { display: none; }

  /* ── BLOBS ── */
  .blob-1 { width: 260px; height: 260px; top: -50px; right: -70px; }
  .blob-2 { display: none; }
  .blob-3 { display: none; }

  /* ── GENERAL SECTIONS ── */
  .section-py { padding-top: 3rem; padding-bottom: 3rem; }
  .section-header { margin-bottom: 2.5rem; }
  .section-heading {
    font-size: 1.65rem;
    line-height: 1.14;
    letter-spacing: -0.025em;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .section-sub-constrained,
  .section-sub-wide { max-width: 100%; }
  .px-lg { padding-left: 1rem; padding-right: 1rem; }
  .px-std { padding-left: 1rem; padding-right: 1rem; }

  /* ── GALLERY ── */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
    gap: 12px;
  }
  .gallery-tall,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }

  /* ── STATS ── */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .stats-cell {
    text-align: center !important;
    padding: 1.75rem 1rem !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  }
  .stats-cell:last-child {
    border-bottom: none !important;
  }
  .stat-number { font-size: 2.5rem !important; line-height: 1.1 !important; }
  .stat-label { font-size: 0.875rem !important; margin-top: 0.375rem !important; }

  /* ── AMENITIES ── */
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .amenity-card   { padding: 16px 10px; }
  .amenity-label  { font-size: 11px; }

  /* ── WHY CARDS ── */
  .why-card { padding: 20px; }

  /* ── FEATURE CARDS ── */
  .feature-img { height: 160px; }

  /* ── ABOUT ── */
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-stat-card  { padding: 14px 16px; }
  .about-stat-number { font-size: 1.5rem; }

  /* ── ABOUT CAROUSEL ── */
  #aboutCarousel .about-carousel-btn { opacity: 0.75; }

  /* ── WORKSPACE SHOWCASE ── */
  .workspace-showcase-grid { grid-template-columns: 1fr; }
  .workspace-showcase-grid .gallery-item { min-height: 180px; }
  .workspace-showcase-grid .gallery-tall { grid-row: auto; }
  .workspace-showcase-grid .gallery-wide { grid-column: auto; }

  /* ── GRID HELPERS ── */
  .grid-3col { grid-template-columns: 1fr; }
  .grid-2col { grid-template-columns: 1fr; }

  /* ── LOCATION ── */
  .map-cta-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .map-directions-btn { align-self: stretch; justify-content: center; }
  .location-maps-btn  { width: 100%; box-sizing: border-box; justify-content: center; }

  /* ── FOOTER ── */
  .footer-base { padding-top: 3rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2.5rem; grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-contact-item {
    align-items: flex-start;
    gap: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .footer-contact-link { word-break: break-all; }

  /* ── MARQUEE ── */
  .marquee-label-wrap { padding-left: 1rem; padding-right: 1rem; }
  .brand-pill { padding: 8px 16px; font-size: 12px; }

  /* ── LIGHTBOX ── */
  .lightbox-modal  { padding: 48px 10px 12px; gap: 8px; }
  .lightbox-card   { max-width: 96vw; max-height: 55vh; border-radius: 16px; }
  .lightbox-img    { max-width: 96vw; max-height: 55vh; border-radius: 16px; }
  .lightbox-nav    { width: 40px; height: 40px; }
  .lightbox-nav-prev { left: 4px; }
  .lightbox-nav-next { right: 4px; }
  .lb-frame { width: 44px; height: 32px; border-radius: 5px; }
}

/* ── SMALL PHONE — max-width: 479px ────────────────────────── */
@media (max-width: 1023px) {
  .hero-h1-line { font-size: 8vw !important; }
  .hero-subtext { font-size: 0.8125rem !important; }
  .section-heading { font-size: 1.45rem; }
  .section-py { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .px-lg { padding-left: 1rem; padding-right: 1rem; }
  .amenity-card { padding: 14px 8px; }
  .amenity-label { font-size: 10.5px; }
  .stat-number { font-size: 2.125rem !important; }
  .gallery-grid { grid-template-rows: repeat(4, 180px); }
  .workspace-showcase-grid .gallery-item { min-height: 160px; }
  .why-card { padding: 16px; }
  .hero-cta-primary, .hero-cta-secondary { padding: 0.8125rem 1.25rem; font-size: 0.875rem; }
  .footer-logo-img { height: 60px !important; }
  .footer-base { padding-top: 2.5rem; }
}
/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVENESS FIXES — Cloud View 75
   Applied without changing design language, colors, or branding.
═══════════════════════════════════════════════════════════════════ */

/* ── Global overflow guard ── */
*, *::before, *::after { max-width: 100%; }
html, body { overflow-x: hidden; width: 100%; }

section, footer, nav { overflow-x: hidden; }

/* Images are always fluid */
img { max-width: 100%; height: auto; display: block; }

/* ── Navbar logo: prevent scale overflow ── */
.navbar-logo-wrap {
  overflow: hidden;
  max-width: 220px;
}
.navbar-logo-img {
  transform-origin: left center;
  max-width: 100%;
}

/* ── Hero card stack: fluid sizing on all screens ── */
.hero-card-col {
  overflow: visible;
  max-width: 100%;
}
.hero-card-stack {
  position: relative;
  max-width: 100%;
}

/* ── Inline style override for about carousel height on tablet ── */
#aboutCarousel {
  height: 380px !important;
}

/* ── Stats grid: default to 1 column on small screens ── */
.stats-grid {
  grid-template-columns: 1fr;
}

/* ── Ensure all containers don't overflow ── */
.container-xl {
  width: 100%;
  box-sizing: border-box;
}

/* ── Map / iframe must be fluid ── */
.map-frame-wrap iframe {
  max-width: 100%;
  width: 100% !important;
}

/* ── Location map CTA bar wrapping fix ── */
.map-cta-info {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.map-place-name, .map-place-addr {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Footer grid: ensure no overflow ── */
.footer-grid {
  width: 100%;
}

/* ── Marquee: contain overflow ── */
.marquee-section {
  overflow-x: hidden;
  width: 100%;
}


/* ═══════════════════════════════
   BREAKPOINT: min-width 750px (DESKTOP BASE)
   Re-assert 3-column stats grid
═══════════════════════════════ */
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .navbar-logo-wrap { overflow: visible; max-width: none; }
}


/* ═══════════════════════════════════════════
   BREAKPOINT: 480px to 749px (LARGE PHONES)
═══════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Navbar */
  #navbar .navbar-container {
    height: 76px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  #navbar .navbar-logo-img {
    height: 80px !important;
    min-height: 80px !important;
    max-width: 160px !important;
    transform: none !important;
    margin-right: 0 !important;
  }

  /* Hero */
  #hero { padding-top: 1.5rem; padding-bottom: 2.5rem; }
  .hero-content-wrap {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .hero-h1-line { font-size: clamp(1.75rem, 6vw, 2.25rem) !important; }
  .hero-card-col { display: none !important; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-primary, .hero-cta-secondary {
    width: 100%; justify-content: center; text-align: center;
  }

  /* Sections */
  .section-py { padding-top: 3rem; padding-bottom: 3rem; }
  .section-heading { font-size: 1.625rem; }
  .px-lg { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); gap: 12px; }
  .gallery-tall, .gallery-wide { grid-row: auto; grid-column: auto; }
  .workspace-showcase-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .workspace-showcase-grid .gallery-item { min-height: 200px; }
  .workspace-showcase-grid .gallery-tall { grid-row: auto; }
  .workspace-showcase-grid .gallery-wide { grid-column: auto; }

  /* Grids */
  .grid-3col { grid-template-columns: 1fr 1fr; }
  .grid-2col { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .stats-cell { border-left: none !important; border-bottom: 1px solid rgba(255,255,255,0.10) !important; padding: 1.75rem 1rem !important; }
  .stats-cell:last-child { border-bottom: none !important; }
  .stat-number { font-size: 2.5rem !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }

  /* About carousel */
  #aboutCarousel { height: 320px !important; }
}


/* ═══════════════════════════════════════════════
   BREAKPOINT: max-width 749px (ALL MOBILE)
   Extra safeguards on top of existing mobile CSS
═══════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Stats fix: already using 1 column override at global level
     but ensure cell borders are correct */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .stats-cell {
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    padding: 1.75rem 1rem !important;
    text-align: center !important;
  }
  .stats-cell:last-child { border-bottom: none !important; }

  /* Ensure hero is clean */
  #hero {
    width: 100%;
    overflow-x: hidden;
  }

  /* About section carousel mobile height */
  #aboutCarousel { height: 315px !important; }

  /* Location highlights: ensure cards don't overflow */
  .location-highlight-card {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Map CTA bar: better wrapping */
  .map-cta-bar {
    flex-wrap: wrap;
  }
  .map-place-name, .map-place-addr {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  /* Feature cards grid: single column on very small */
  .grid-3col.gap-6 { grid-template-columns: 1fr; }
}

@media (max-width: 1023px) {
  #aboutCarousel { height: 315px !important; }
  .grid-3col { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   BREAKPOINT: 750px – 1023px (TABLET FIXES)
═══════════════════════════════════════════════ */
@media (min-width: 1024px) {

  /* Logo: limit scale on tablets to prevent overflow */
  .navbar-logo-img {
    transform: scale(1.15) !important;
    max-width: 200px !important;
    height: 72px !important;
    min-height: 72px !important;
  }
  #navbar.scrolled .navbar-logo-img {
    transform: scale(1.05) !important;
    height: 58px !important;
    min-height: 58px !important;
  }
  .navbar-logo-wrap { overflow: visible; }

  /* About carousel: better height on tablet */
  #aboutCarousel { height: 360px !important; }

  /* About grid: reduce gap so it fits */
  .grid-2col.gap-16 { gap: 2.5rem !important; }
  .gap-16 { gap: 2.5rem !important; }

  /* Hero card col: ensure contained */
  .hero-card-col { overflow: visible; }
  .hero-card-stack { overflow: visible; }
}


/* ═══════════════════════════════════════════════
   BREAKPOINT: 1024px – 1279px (LAPTOP FIXES)
═══════════════════════════════════════════════ */
@media (min-width: 1024px) {

  /* Logo scale adjustment */
  .navbar-logo-img {
    transform: scale(1.25) !important;
    max-width: 230px !important;
  }

  /* About carousel */
  #aboutCarousel { height: 400px !important; }
}


/* ═══════════════════════════════════════════════
   BREAKPOINT: 1280px+ (LARGE DESKTOP)
═══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  #aboutCarousel { height: 440px !important; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO ALIGNMENT FIX
   Problem: hero-card-col was left-aligned inside its grid column,
   and the fixed-width card-stack (380px) left dead space to the
   right. The text column also had no centering, so on wide screens
   the whole layout looked off-centre.
═══════════════════════════════════════════════════════════════ */

/* ── Hero grid: text ~45% | image ~55% matching reference layout ── */
@media (min-width: 1024px) {
  .hero-content-wrap {
    grid-template-columns: 45fr 55fr;
    align-items: center;
    justify-content: center;
  }

  /* Text column: flush to container left (px-lg on wrapper already handles indent) */
  .hero-content-wrap > .reveal-up:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 0;
  }

  /* Image column: centre the card stack within its column */
  .hero-card-col {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  /* Card stack: use relative widths so it fills the column properly */
  .hero-card-stack {
    position: relative;
    width: min(380px, 90%);
    height: 480px;
  }

  .card-front {
    width: min(340px, 88%);
    height: min(420px, 90vw);
  }

  .card-back {
    width: min(300px, 75%);
    height: min(380px, 80vw);
  }
}

/* ── Tablet: tighter proportions ── */
@media (min-width: 1024px) {
  .hero-content-wrap {
    grid-template-columns: 45fr 55fr;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-card-stack {
    width: min(280px, 90%);
    height: 360px;
  }
  .card-front {
    width: min(255px, 88%);
    height: 320px;
  }
  .card-back {
    width: min(210px, 75%);
    height: 275px;
  }
}

/* ── Laptop ── */
@media (min-width: 1024px) {
  .hero-card-stack {
    width: min(330px, 90%);
    height: 415px;
  }
  .card-front {
    width: min(300px, 88%);
    height: 375px;
  }
  .card-back {
    width: min(250px, 75%);
    height: 320px;
  }
}

/* ── Large desktop 1280px ── */
@media (min-width: 1024px) {
  .hero-card-stack {
    width: min(360px, 90%);
    height: 460px;
  }
  .card-front {
    width: min(325px, 88%);
    height: 400px;
  }
  .card-back {
    width: min(275px, 75%);
    height: 345px;
  }
}

/* ── XL monitor 1440px+ ── */
@media (min-width: 1440px) {
  .hero-card-stack {
    width: min(420px, 90%);
    height: 520px;
  }
  .card-front {
    width: min(380px, 88%);
    height: 460px;
  }
  .card-back {
    width: min(320px, 75%);
    height: 400px;
  }
}

/* ── Navbar container: ensure full width without overflow ── */
.navbar-container.container-xl {
  width: 100%;
  box-sizing: border-box;
}


/* ═══════════════════════════════════════════════════════════════════════
   MASTER ALIGNMENT SYSTEM — Cloud View 75
   A single, clean, consolidated override block.
   Two breakpoints only: (min-width: 750px) and (min-width: 1440px).
   No color, font, animation, or hover changes — layout only.

   Design system:
   ┌────────────────────────────────────────────────┐
   │  Container max-width: 80rem (desktop)          │
   │  Horizontal padding: 2.5rem each side          │
   │  Usable content width: 80rem − 5rem = 75rem    │
   │  Section vertical rhythm: 5rem top/bottom      │
   │  Section-header gap: 4rem below heading block  │
   │  Card grid gap: 1.5rem                         │
   │  Gallery gap: 1rem                             │
   └────────────────────────────────────────────────┘

   All sections share the same container-xl + px-lg wrapper,
   so horizontal alignment is automatic once padding is unified.
   Vertical rhythm is standardized across every section.
═══════════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   DESKTOP BASE — min-width: 750px
   Every rule here applies from 750px up to 1439px.
   The 1440px block below overrides selectively for XL.
───────────────────────────────────────────────────── */
@media (min-width: 1024px) {

  /* ══ 1. CONTAINER & HORIZONTAL PADDING ══
     Single source of truth for all sections.
     navbar-container shares the same px values so
     every section's left/right edge aligns perfectly. */
  .container-xl {
    max-width: 80rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .px-lg,
  .px-std {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .navbar-container {
    height: 100px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    box-sizing: border-box;
  }

  #navbar.scrolled .navbar-container {
    height: 80px;
  }


  /* ══ 2. SECTION VERTICAL RHYTHM ══
     All content sections: equal top/bottom breathing room. */
  .section-py {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-header,
  .features-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  /* Marquee section sits between hero and gallery —
     tighter vertical rhythm to bridge the two. */
  .marquee-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .marquee-label-wrap {
    margin-bottom: 1.5rem;
    padding-left: 0;   /* already inside container-xl px-lg */
    padding-right: 0;
  }


  /* ══ 3. HERO SECTION ══ */
  .hero-content-wrap {
    grid-template-columns: 45fr 55fr;
    align-items: center;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
    gap: 2.5rem;
  }

  /* Text column: left-flush, vertically centred */
  .hero-content-wrap > .reveal-up:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  /* Image column: card stack fills column, right edge
     aligns with container right-padding (= navbar edge) */
  .hero-card-col {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
  }

  /* Card stack: fills 55fr column, right-flush */
  .hero-card-stack {
    position: relative;
    width: min(480px, 92%);
    height: 560px;
  }

  .card-front {
    width: min(440px, 94%);
    height: min(520px, 90vh);
    top: 0;
    left: 0;
  }

  .card-back {
    width: min(370px, 78%);
    height: min(455px, 82vh);
    top: 65px;
    right: -8px;
  }

  .hero-carousel-dots {
    bottom: 60px;
    right: 16px;
  }


  /* ══ 4. GALLERY SECTION ══
     3-column masonry grid. Both gallery sections use
     identical row heights for a unified system. */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 270px 270px;
    gap: 1rem;
  }
  .gallery-tall { grid-row: 1 / 3; }
  .gallery-wide { grid-column: 2 / 4; }

  .workspace-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 270px 270px;
    gap: 1rem;
  }
  .workspace-showcase-grid .gallery-tall { grid-row: 1 / 3; }
  .workspace-showcase-grid .gallery-wide { grid-column: 2 / 4; }
  .workspace-showcase-grid .gallery-item { min-height: auto; }


  /* ══ 5. FEATURES / WHY CHOOSE — 3-col card grids ══ */
  .grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Feature card image height — uniform across all 6 cards */
  .feature-img {
    height: 190px;
  }

  /* Why cards — equal padding */
  .why-card {
    padding: 28px;
  }


  /* ══ 6. ABOUT SECTION — 2-col image + text ══ */
  .grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
  }

  #aboutCarousel {
    height: 440px !important;
  }


  /* ══ 7. AMENITIES — 4-col icon grid ══ */
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .amenity-card {
    padding: 24px 16px;
  }


  /* ══ 8. STATS SECTION ══ */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .stats-cell {
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .stats-cell + .stats-cell {
    border-left: 1px solid rgba(255, 255, 255, 0.20);
  }


  /* ══ 9. LOCATION SECTION ══
     2-col: map left, highlights right. Gap matches about section. */
  #location .grid-2col {
    gap: 3rem;
  }

  .map-cta-bar {
    flex-direction: row;
    align-items: center;
  }

  .location-maps-btn {
    width: auto;
  }

  .location-cards-list {
    gap: 0.875rem;
  }


  /* ══ 10. FOOTER ══ */
  .footer-base {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Footer logo: 120px as specified */
  .footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    object-position: left center;
  }

  /* Navbar logo: desktop size */
  .navbar-logo-img {
    height: 80px;
    min-height: 80px;
    max-width: 240px;
  }

  #navbar.scrolled .navbar-logo-img {
    height: 64px;
    min-height: 64px;
  }
}


/* ─────────────────────────────────────────────────────
   LARGE MONITOR — min-width: 1440px
   Scales everything proportionally for wide screens.
   Overrides only the values that need to change at XL.
───────────────────────────────────────────────────── */
@media (min-width: 1440px) {

  /* ── Container ── */
  .container-xl {
    max-width: 88rem;
  }

  .px-lg,
  .px-std {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  /* ── Navbar ── */
  .navbar-container {
    height: 110px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  #navbar.scrolled .navbar-container {
    height: 86px;
  }

  #navbar .navbar-logo-img {
    height: 90px;
    min-height: 90px;
    max-width: 280px;
  }

  #navbar.scrolled .navbar-logo-img {
    height: 70px;
    min-height: 70px;
  }

  .desktop-nav { gap: 2.25rem; }
  .nav-link { font-size: 1rem; }
  .navbar-phone-cta { font-size: 0.9375rem; padding: 0.5625rem 1.25rem; }

  /* ── Section rhythm ── */
  .section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-header,
  .features-header {
    margin-bottom: 4.5rem;
  }

  .section-heading {
    font-size: clamp(2.4rem, 2.8vw, 3.25rem);
  }

  /* ── Hero ── */
  .hero-content-wrap {
    padding-top: 4rem;
    padding-bottom: 5.5rem;
    gap: 3.5rem;
  }

  .hero-h1-line {
    font-size: clamp(2.875rem, 3.3vw, 3.875rem) !important;
    overflow: visible !important;
  }

  .hero-subtext {
    font-size: 1.0625rem !important;
    max-width: 32rem;
  }

  .hero-card-col {
    justify-content: flex-end;
    padding-right: 0;
  }

  .hero-card-stack {
    width: min(560px, 90%);
    height: 640px;
  }

  .card-front {
    width: min(510px, 94%);
    height: min(590px, 88vh);
    top: 0;
    left: 0;
  }

  .card-back {
    width: min(430px, 78%);
    height: min(520px, 78vh);
    top: 70px;
    right: -10px;
  }

  .hero-carousel-dots {
    bottom: 68px;
    right: 16px;
  }

  /* ── Gallery ── */
  .gallery-grid {
    grid-template-rows: 320px 320px;
    gap: 1.125rem;
  }

  .workspace-showcase-grid {
    grid-template-rows: 330px 330px;
    gap: 1.125rem;
  }

  /* ── Feature cards ── */
  .grid-3col {
    gap: 1.75rem;
  }

  .feature-img {
    height: 220px;
  }

  .why-card {
    padding: 36px;
  }

  /* ── About ── */
  .grid-2col {
    gap: 5rem;
  }

  #aboutCarousel {
    height: 480px !important;
  }

  /* ── Amenities ── */
  .amenities-grid {
    gap: 1.5rem;
  }

  .amenity-card {
    padding: 28px 20px;
  }

  .amenity-icon {
    width: 64px;
    height: 64px;
  }

  /* ── Stats ── */
  .stats-cell {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  /* ── Footer ── */
  .footer-base {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .footer-grid {
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .footer-logo-img {
    height: 65px;
    max-width: 300px;
  }
}


/* ═══════════════════════════════════════════════════
   MOBILE — max-width: 749px
═══════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* ── Hero: full viewport, transparent bg (images provided by #heroMobileBg) ── */
  #hero {
    position: relative;
    padding-top: 0;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #111; /* dark fallback only visible for <1 frame before JS runs */
    overflow: hidden;
  }

  /* White hero-bg div: hidden — carousel image is the background */
  .hero-bg {
    background: transparent !important;
  }

  /* Blobs and grid: hidden on mobile */
  .hero-grid,
  .blob-1, .blob-2, .blob-3 {
    display: none !important;
  }

  /* Desktop card column: always hidden — mobile uses #heroMobileBg injected by JS */
  .hero-card-col {
    display: none !important;
  }

  /* ── JS-injected background container ── */
  #heroMobileBg {
    position: absolute;
    inset: 0;          /* stretches full width AND full height — no black gap */
    z-index: 0;
    overflow: hidden;
  }

  /* Individual slides: full cover, opacity-crossfade */
  .hero-mobile-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
  }
  .hero-mobile-bg-slide.active {
    opacity: 1;
  }

  /* ── Gradient overlay ── */
  #heroMobileOverlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(8,8,8,0.55)  0%,
      rgba(8,8,8,0.15) 28%,
      rgba(8,8,8,0.08) 46%,
      rgba(8,8,8,0.55) 64%,
      rgba(5,5,5,0.85) 82%,
      rgba(3,3,3,0.96) 100%
    );
  }

  /* ── Content: pinned to bottom, above overlay ── */
  .hero-content-wrap {
    position: relative;
    z-index: 10;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-top: 0 !important;
    padding-bottom: 3rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    gap: 0 !important;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-content-wrap > .reveal-up {
    width: 100%;
  }

  /* Thin gold rule above heading */
  .hero-content-wrap > .reveal-up::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.25rem;
    border-radius: 1px;
  }

  /* Heading */
  .hero-heading {
    text-align: left !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.55), 0 4px 24px rgba(0,0,0,0.35);
  }

  .hero-h1-line {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(2rem, 7.5vw, 2.625rem) !important;
    line-height: 1.12 !important;
    display: block !important;
    letter-spacing: -0.03em !important;
  }

  .hero-h1-line.text-gradient {
    background: linear-gradient(135deg, #FFCD32 0%, #FFE066 55%, #FFCD32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
  }

  /* Subtext */
  .hero-subtext {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.875rem !important;
    line-height: 1.7 !important;
    text-align: left !important;
    text-shadow: none !important;
    margin-bottom: 1.75rem !important;
    max-width: 100% !important;
  }

  /* CTA row */
  .hero-cta-group {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    justify-content: flex-start !important;
  }

  .hero-cta-primary.btn-gold {
    background-color: var(--gold) !important;
    color: #0F0F0F !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(255,205,50,0.40) !important;
  }

  .hero-cta-secondary.hero-btn-outline {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }
  .hero-cta-secondary.hero-btn-outline:hover {
    background: rgba(255,205,50,0.15) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
  }

  /* ── Slide indicator dots (bottom-right) ── */
  #heroMobileIndicator {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 12;
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .hero-mob-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.30);
    border: none;
    padding: 0;
    transition: background 0.4s, width 0.4s, border-radius 0.4s;
    cursor: default;
    pointer-events: none;
  }
  .hero-mob-dot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
  }

  /* ── Footer logo ── */
  .footer-logo-img {
    height: 60px !important;
    max-width: 200px !important;
  }

  /* ── Stats: single column ── */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .stats-cell {
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    padding: 1.75rem 1rem !important;
    text-align: center !important;
  }
  .stats-cell:last-child {
    border-bottom: none !important;
  }

  /* ── Marquee ── */
  .marquee-label-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER LOGO — consistent flush-left alignment on all viewports.
   Logo must line up with the brand description text and link columns
   directly below it, on both mobile and desktop.
═══════════════════════════════════════════════════════════════════ */
.footer-brand-col {
  text-align: left !important;
}
.footer-logo-wrap {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center;
  margin-left: 0 !important;
  padding-left: 0 !important;
  width: 100%;
}
.footer-logo-img {
  display: block !important;
  margin-left: 0 !important;
  object-position: left center !important;
}
#footer-logo-fb {
  margin-left: 0 !important;
  justify-content: flex-start !important;
}

/* ═══════════════════════════════════════════════════════════════════
   FLUID DESKTOP SCALING — Navbar + Map
   After consolidating to 3 breakpoints, navbar/map had conflicting
   tablet/laptop/desktop overrides — the last one wins, breaking the
   tablet view. clamp() makes them scale smoothly from 768px → 1440px+.
═══════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

  /* ── Navbar: smooth scaling ── */
  #navbar .navbar-container {
    height: clamp(84px, 4vw + 50px, 110px) !important;
    padding-left: clamp(1.5rem, 1.5vw + 0.5rem, 3.5rem) !important;
    padding-right: clamp(1.5rem, 1.5vw + 0.5rem, 3.5rem) !important;
  }
  #navbar.scrolled .navbar-container {
    height: clamp(70px, 3vw + 40px, 86px) !important;
  }
  #navbar .navbar-logo-img {
    height: clamp(60px, 3.5vw + 30px, 90px) !important;
    min-height: clamp(60px, 3.5vw + 30px, 90px) !important;
    max-width: clamp(180px, 12vw + 80px, 280px) !important;
  }
  #navbar.scrolled .navbar-logo-img {
    height: clamp(52px, 2.5vw + 30px, 70px) !important;
    min-height: clamp(52px, 2.5vw + 30px, 70px) !important;
  }
  .desktop-nav {
    gap: clamp(1.125rem, 1vw + 0.4rem, 2.25rem) !important;
  }
  .nav-link {
    font-size: clamp(0.8125rem, 0.25vw + 0.7rem, 1rem) !important;
  }
  .navbar-phone-cta {
    font-size: clamp(0.8125rem, 0.2vw + 0.75rem, 0.9375rem) !important;
    padding: clamp(0.4375rem, 0.2vw + 0.35rem, 0.5625rem) clamp(0.875rem, 0.4vw + 0.7rem, 1.25rem) !important;
  }
  .navbar-contact-label {
    display: none;
  }

  /* Show "Contact Us" label on all desktops (≥1024) — there's room now */
  .navbar-contact-label { display: inline; }

  /* ── Map / Location section: keep grid usable at tablet ── */
  #location .grid-2col {
    gap: clamp(1.5rem, 2vw, 3rem) !important;
  }
  .map-cta-bar {
    padding: clamp(12px, 1vw + 6px, 16px) clamp(14px, 1vw + 8px, 20px);
    gap: clamp(10px, 0.8vw, 14px);
  }
  .map-place-name {
    font-size: clamp(0.875rem, 0.3vw + 0.75rem, 1rem);
  }
  .map-place-addr {
    font-size: clamp(0.75rem, 0.2vw + 0.65rem, 0.875rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR LOGO — final size override (smaller on both mobile & desktop)
   Placed last so it wins over earlier rules including transform scales
   and min-height inflations that were enlarging the logo.
═══════════════════════════════════════════════════════════════════ */

/* Mobile + tablet (≤1023px) */
@media (max-width: 1023px) {
  #navbar .navbar-logo-img {
    height: 56px !important;
    min-height: 56px !important;
    max-width: 130px !important;
    transform: none !important;
    margin-right: 0 !important;
    object-fit: contain;
    object-position: left center;
  }
  #navbar.scrolled .navbar-logo-img {
    height: 48px !important;
    min-height: 48px !important;
  }
  #navbar .navbar-container {
    height: 68px !important;
  }
  #navbar.scrolled .navbar-container {
    height: 60px !important;
  }
}

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  #navbar .navbar-logo-img {
    height: clamp(48px, 2vw + 24px, 64px) !important;
    min-height: clamp(48px, 2vw + 24px, 64px) !important;
    max-width: clamp(150px, 8vw + 60px, 200px) !important;
    transform: none !important;
    object-fit: contain;
    object-position: left center;
  }
  #navbar.scrolled .navbar-logo-img {
    height: clamp(40px, 1.5vw + 22px, 52px) !important;
    min-height: clamp(40px, 1.5vw + 22px, 52px) !important;
  }
  #navbar .navbar-container {
    height: clamp(72px, 3vw + 40px, 90px) !important;
  }
  #navbar.scrolled .navbar-container {
    height: clamp(60px, 2vw + 36px, 74px) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO MOBILE — PREMIUM FROSTED GLASS CARD WITH GOLD TRIM
   The text + CTA column becomes a translucent blurred card floating
   above the building-photo carousel. Subtle gold border + soft shadow
   give it a premium, high-end real estate feel.
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Soften the dark overlay so the photo reads through the blurred card */
  #heroMobileOverlay {
    background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.30) 0%,
      rgba(15, 23, 42, 0.55) 100%) !important;
  }

  /* Anchor the card lower and add bottom breathing room */
  #hero .hero-content-wrap {
    justify-content: flex-end !important;
    padding-bottom: 4.5rem !important;
  }

  /* The first column (heading + subtext + CTAs) IS the glass card */
  #hero .hero-content-wrap > .reveal-up:first-child {
    background: rgba(255, 255, 255, 0.10) !important;
    backdrop-filter: blur(24px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
    border: 1px solid rgba(255, 216, 92, 0.32) !important;
    border-radius: 22px !important;
    padding: 28px 22px 26px !important;
    box-shadow: none !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* Replace the existing 36px gold rule with a full-width gold gradient
     stroke at the top of the card */
  #hero .hero-content-wrap > .reveal-up::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    height: 1px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 216, 92, 0.70) 50%,
      transparent 100%) !important;
    pointer-events: none;
  }

  /* Subtle gold radial glow inside the top-right of the card */
  #hero .hero-content-wrap > .reveal-up:first-child::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center,
      rgba(255, 216, 92, 0.20) 0%,
      transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Ensure all content sits above the glow */
  #hero .hero-heading,
  #hero .hero-subtext,
  #hero .hero-cta-group {
    position: relative;
    z-index: 1;
  }

  /* No text shadow — the white card provides full contrast */
  #hero .hero-heading {
    text-shadow: none !important;
    margin-bottom: 0.875rem !important;
  }

  /* Tighten the subtext */
  #hero .hero-subtext {
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 1.5rem !important;
  }

  /* Make Explore button match card aesthetic (more transparent, gold-tinted) */
  #hero .hero-cta-secondary.hero-btn-outline {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 216, 92, 0.45) !important;
    color: #FFD85C !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline:hover {
    background: rgba(255, 216, 92, 0.18) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
  }
}

/* Older browsers without backdrop-filter — fall back to solid translucent
   bg so the card still looks intentional, just without the live blur */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  @media (max-width: 1023px) {
    #hero .hero-content-wrap > .reveal-up:first-child {
      background: rgba(15, 23, 42, 0.78) !important;
    }
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO MOBILE V2 — Shortened photo + overlapping white card
   - Photo carousel takes only ~60vh (not full viewport)
   - Card is solid white, dark text inside, sits half-on / half-off the
     photo, bridging into the marquee section below.
   - Marquee section gets extra top padding to clear the card overhang.
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Hero: short photo area, card overflows visually below it */
  #hero {
    min-height: 58vh !important;
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
  }

  /* Photo carousel + overlay shrink to hero's new height automatically */
  #heroMobileOverlay {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.18) 100%) !important;
  }

  /* Content wrap: end-aligned so card hugs the photo bottom */
  #hero .hero-content-wrap {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    justify-content: flex-end !important;
  }

  /* THE CARD — solid white, dark text, sits exactly half on photo / half below */
  #hero .hero-content-wrap > .reveal-up:first-child {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 216, 92, 0.55) !important;
    border-radius: 20px !important;
    padding: 26px 22px 24px !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
    transform: translateY(80%) !important;
    color: #0f172a;
    z-index: 5;
  }

  /* Kill the gold radial glow inside the card (it was for glass version) */
  #hero .hero-content-wrap > .reveal-up:first-child::after {
    display: none !important;
  }

  /* Top gold stroke stays — looks great as a header accent on white */
  #hero .hero-content-wrap > .reveal-up::before {
    background: linear-gradient(90deg,
      transparent 0%,
      #FFCD32 50%,
      transparent 100%) !important;
    opacity: 0.85;
  }

  /* Heading: dark on white, keep gold gradient on middle line */
  #hero .hero-heading {
    text-shadow: none !important;
  }
  #hero .hero-h1-line {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    text-shadow: none !important;
    font-size: clamp(1.75rem, 6.5vw, 2.25rem) !important;
  }
  #hero .hero-h1-line.text-gradient {
    background: linear-gradient(135deg, #D4A017 0%, #FFCD32 55%, #B8920A 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  /* Subtext: muted slate on white */
  #hero .hero-subtext {
    color: #64748b !important;
    text-shadow: none !important;
  }

  /* CTA buttons: Call Us stays gold; Explore becomes outlined gold on white */
  #hero .hero-cta-primary.btn-gold {
    background-color: var(--gold) !important;
    color: #0F0F0F !important;
    box-shadow: 0 6px 18px rgba(255, 205, 50, 0.35) !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline {
    background: #ffffff !important;
    border: 1px solid #FFCD32 !important;
    color: #B8920A !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline:hover {
    background: rgba(255, 216, 92, 0.15) !important;
    border-color: #B8920A !important;
    color: #B8920A !important;
  }

  /* Hide the photo-area dot indicator since the photo is much smaller now */
  #heroMobileIndicator {
    display: none !important;
  }

  /* Marquee: top padding ≈ 65% of the card's visual height, so the larger
     lower portion lives in this padding zone */
  .marquee-section {
    padding-top: 130px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HAMBURGER
   - Hover: black background, GOLD lines
   - Active / open: black background, white lines
═══════════════════════════════════════════════════════════════════ */
.hamburger-btn:hover {
  background: #0F0F0F !important;
  border-color: #0F0F0F !important;
}
.hamburger-btn:hover .ham-line {
  background: #FFD85C !important;
}

.hamburger-btn.open,
.hamburger-btn:active {
  background: #0F0F0F !important;
  border-color: #0F0F0F !important;
}
.hamburger-btn.open .ham-line,
.hamburger-btn:active .ham-line {
  background: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════════
   FLOATING CONTACT BAR — Always-visible Call + WhatsApp CTAs
   Full-width joined strip pinned to the bottom on all viewports.
   Left half: gold (Call Us). Right half: black (WhatsApp). No shadows.
═══════════════════════════════════════════════════════════════════ */
.floating-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  gap: 0;
  padding: 0 0 env(safe-area-inset-bottom);
  background: transparent;
  border-top: 1px solid #ffffff;
}

.float-cta {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.float-cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.float-cta-call {
  background: #FFD85C;
  color: #0F0F0F;
}
.float-cta-call:hover {
  background: #FFCD32;
}

.float-cta-whatsapp {
  background: #0F0F0F;
  color: #FFD85C;
}
.float-cta-whatsapp:hover {
  background: #1a1a1a;
  color: #FFE066;
}

.float-cta:active {
  filter: brightness(0.94);
}

/* Footer copyright needs breathing room above the bar (mobile only) */
@media (max-width: 1023px) {
  .footer-bottom {
    padding-bottom: 70px;
  }
}

/* Hide floating contact bar on desktop — mobile only */
@media (min-width: 1024px) {
  .floating-contact-bar {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE MENU — Full-screen overlay with smooth open animation
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Override the global .hidden display:none so we can animate */
  #mobile-menu.mobile-menu.hidden {
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
  }

  /* Full-screen overlay */
  #mobile-menu.mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 998 !important;
    margin: 0 !important;
    background: linear-gradient(160deg, #0F0F0F 0%, #1a1a1a 60%, #0F0F0F 100%) !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 6rem 2rem 4rem !important;
    overflow-y: auto !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.35s linear;
    border-top: none !important;
  }

  /* Subtle gold accent ring at the top of the menu */
  #mobile-menu.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFD85C 50%, transparent 100%);
    opacity: 0.55;
  }

  /* Nav links — large, centered, with a slide-up entrance */
  #mobile-menu .mobile-nav-link {
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
    padding: 0.875rem 1.5rem !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    width: 100% !important;
    max-width: 320px !important;
    transition: color 0.25s ease, transform 0.25s ease !important;
    opacity: 0;
    transform: translateY(20px);
  }
  #mobile-menu .mobile-nav-link:last-of-type {
    border-bottom: none !important;
  }
  #mobile-menu .mobile-nav-link:hover,
  #mobile-menu .mobile-nav-link:active {
    color: #FFD85C !important;
    transform: translateY(0) translateX(4px) !important;
  }

  /* Stagger fade-in of each link when menu opens */
  #mobile-menu:not(.hidden) .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
  }
  #mobile-menu:not(.hidden) .mobile-nav-link:nth-child(1) { transition-delay: 0.08s; }
  #mobile-menu:not(.hidden) .mobile-nav-link:nth-child(2) { transition-delay: 0.14s; }
  #mobile-menu:not(.hidden) .mobile-nav-link:nth-child(3) { transition-delay: 0.20s; }
  #mobile-menu:not(.hidden) .mobile-nav-link:nth-child(4) { transition-delay: 0.26s; }
  #mobile-menu:not(.hidden) .mobile-nav-link:nth-child(5) { transition-delay: 0.32s; }
  #mobile-menu:not(.hidden) .mobile-nav-link:nth-child(6) { transition-delay: 0.38s; }
  #mobile-menu:not(.hidden) .mobile-nav-link {
    transition:
      color 0.25s ease,
      opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Contact CTA at the bottom of the menu — gold pill, centered */
  #mobile-menu .mobile-contact-cta {
    background: #FFD85C !important;
    border: 1px solid #FFCD32 !important;
    color: #0F0F0F !important;
    font-weight: 700 !important;
    width: 100% !important;
    max-width: 320px !important;
    margin-top: 2rem !important;
    padding: 0.875rem 1.25rem !important;
    border-radius: 10px !important;
    opacity: 0;
    transform: translateY(20px);
    transition:
      background 0.25s, color 0.25s, border-color 0.25s,
      opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.44s,
      transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.44s !important;
  }
  #mobile-menu:not(.hidden) .mobile-contact-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hamburger must stay above the menu so it can act as the close button */
  #hamburger.hamburger-btn {
    position: relative;
    z-index: 1001 !important;
  }
  #navbar {
    z-index: 1000 !important;
  }

  /* Lock body scroll when menu is open (modern browsers) */
  html:has(#mobile-menu:not(.hidden)),
  body:has(#mobile-menu:not(.hidden)) {
    overflow: hidden;
  }

  /* Hide the floating Call/WhatsApp bar while the menu is open */
  .floating-contact-bar {
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  body:has(#mobile-menu:not(.hidden)) .floating-contact-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL MODAL — Privacy Policy / Terms of Use popup
═══════════════════════════════════════════════════════════════════ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.legal-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.legal-modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-modal.open .legal-modal-card {
  transform: translateY(0) scale(1);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
  flex-shrink: 0;
}

.legal-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
}

.legal-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.legal-modal-close:hover {
  background: #0F0F0F;
  color: #FFD85C;
  border-color: #0F0F0F;
}

.legal-modal-body {
  padding: 22px 26px 28px;
  overflow-y: auto;
  flex: 1 1 auto;
  font-family: 'Manrope', sans-serif;
  color: #334155;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.legal-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.legal-content h3:first-of-type {
  margin-top: 1rem;
}
.legal-content p {
  margin: 0 0 0.875rem;
}
.legal-content ul {
  margin: 0 0 0.875rem;
  padding-left: 1.25rem;
}
.legal-content li {
  margin-bottom: 0.4rem;
}
.legal-content a {
  color: #B8920A;
  text-decoration: underline;
  text-decoration-color: rgba(184, 146, 10, 0.35);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.legal-content a:hover {
  color: #8a6b00;
  text-decoration-color: #8a6b00;
}
.legal-meta {
  font-size: 0.8125rem !important;
  color: #94a3b8 !important;
  margin-bottom: 1.25rem !important;
  font-style: italic;
}

/* Mobile: full-screen modal */
@media (max-width: 1023px) {
  .legal-modal {
    padding: 0;
  }
  .legal-modal-card {
    max-width: 100%;
    max-height: 100%;
    height: 100dvh;
    border-radius: 0;
  }
  .legal-modal-header {
    padding: 16px 18px;
  }
  .legal-modal-title {
    font-size: 1.0625rem;
  }
  .legal-modal-body {
    padding: 18px 18px 24px;
    font-size: 0.875rem;
  }
}

/* Lock body scroll when legal modal is open */
html:has(.legal-modal.open),
body:has(.legal-modal.open) {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════
   SUB-PAGE STYLES — Private Cabins, Meeting Rooms, Open Workspace, About
   Shared layout primitives for SEO sub-pages.
═══════════════════════════════════════════════════════════════════ */

.subpage-hero {
  padding: 130px 0 60px;
  background: linear-gradient(180deg, #fff8e0 0%, #ffffff 100%);
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 1023px) {
  .subpage-hero {
    padding: 100px 0 40px;
  }
}

.subpage-breadcrumb {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.subpage-breadcrumb a {
  color: #B8920A;
  text-decoration: none;
  transition: color 0.2s;
}
.subpage-breadcrumb a:hover {
  color: #8a6b00;
  text-decoration: underline;
}
.subpage-breadcrumb span {
  margin: 0 0.4rem;
  color: #94a3b8;
}

.subpage-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 1.25rem;
}

.subpage-lead {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.65;
  color: #475569;
  max-width: 720px;
  margin: 0 0 2rem;
}

.subpage-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subpage-cta-primary,
.subpage-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.subpage-cta-primary {
  background: #FFD85C;
  color: #0F0F0F;
  border: 1px solid #FFCD32;
}
.subpage-cta-primary:hover {
  background: #FFCD32;
  transform: translateY(-2px);
}
.subpage-cta-secondary {
  background: #ffffff;
  color: #0F0F0F;
  border: 1px solid #0F0F0F;
}
.subpage-cta-secondary:hover {
  background: #0F0F0F;
  color: #FFD85C;
  transform: translateY(-2px);
}

.subpage-section {
  padding: 56px 0;
}
@media (max-width: 1023px) {
  .subpage-section {
    padding: 36px 0;
  }
}
.subpage-section.bg-white { background: #ffffff; }
.subpage-section.bg-slate-50 { background: #f8fafc; }

.subpage-hero-img {
  width: 100%;
  height: clamp(260px, 42vw, 480px);
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid #e2e8f0;
}

.subpage-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 1rem;
}

.subpage-body {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
  max-width: 780px;
  margin: 0 0 1.25rem;
}
.subpage-body strong {
  color: #0f172a;
  font-weight: 700;
}

.subpage-feature-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
  max-width: 820px;
}
.subpage-feature-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.subpage-feature-list li:last-child {
  border-bottom: none;
}
.subpage-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 16px;
  height: 16px;
  background: #FFD85C;
  border-radius: 50%;
  border: 3px solid #fff8d6;
}
.subpage-feature-list li strong {
  color: #0f172a;
  font-weight: 700;
}

.subpage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 1023px) {
  .subpage-card-grid {
    grid-template-columns: 1fr;
  }
}
.subpage-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 22px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.subpage-card:hover {
  border-color: #FFCD32;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 205, 50, 0.10);
}
.subpage-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0f172a;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.subpage-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.subpage-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 1023px) {
  .subpage-stats-grid {
    grid-template-columns: 1fr;
  }
}
.subpage-stat {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
}
.subpage-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: #B8920A;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.subpage-stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.subpage-cta-section {
  background: linear-gradient(135deg, #0F0F0F 0%, #1a1a1a 100%);
  padding: 64px 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1023px) {
  .subpage-cta-section {
    padding: 44px 0;
  }
}
.subpage-cta-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #ffffff;
  margin: 0 0 0.875rem;
  letter-spacing: -0.02em;
}
.subpage-cta-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 1.75rem;
  max-width: 600px;
}
.subpage-cta-section .subpage-cta-row {
  justify-content: center;
}
.subpage-cta-section .subpage-cta-secondary {
  background: transparent;
  color: #FFD85C;
  border-color: #FFD85C;
}
.subpage-cta-section .subpage-cta-secondary:hover {
  background: #FFD85C;
  color: #0F0F0F;
}

.subpage-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 1023px) {
  .subpage-related-grid {
    grid-template-columns: 1fr;
  }
}
.subpage-related-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 220px;
  padding: 20px 22px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.subpage-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.subpage-related-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFD85C;
  margin-bottom: 6px;
}
.subpage-related-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* Image grid (3-up) used on the About page */
.subpage-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.subpage-img-grid.subpage-img-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1023px) {
  .subpage-img-grid,
  .subpage-img-grid.subpage-img-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.subpage-grid-img {
  width: 100%;
  height: clamp(220px, 22vw, 300px);
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.subpage-grid-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* ── Built-to-Order callout (used on About page) ── */
.subpage-callout {
  background: linear-gradient(135deg, #fffbe8 0%, #fff5cc 100%);
  border: 1px solid rgba(255, 205, 50, 0.55);
  border-left: 4px solid #FFCD32;
  border-radius: 16px;
  padding: 32px 32px 28px;
  max-width: 920px;
}
@media (max-width: 1023px) {
  .subpage-callout {
    padding: 24px 22px 22px;
    border-left-width: 3px;
  }
}
.subpage-callout-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8920A;
  background: rgba(255, 205, 50, 0.18);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.subpage-callout-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.875rem;
}
.subpage-callout-heading em {
  font-style: italic;
  color: #B8920A;
  font-weight: 700;
}
.subpage-callout-body {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 1rem;
}
.subpage-callout-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.subpage-callout-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
}
.subpage-callout-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #FFCD32;
  color: #0F0F0F;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.subpage-callout-list li strong {
  color: #0f172a;
  font-weight: 700;
}

/* ── Full-page legal content (privacy-policy.html / terms-of-use.html) ── */
.legal-page-content {
  max-width: 780px;
  font-family: 'Manrope', sans-serif;
  color: #334155;
  line-height: 1.75;
  font-size: 1rem;
}
.legal-page-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.legal-page-content h2:first-of-type {
  margin-top: 1.5rem;
}
.legal-page-content p {
  margin: 0 0 1rem;
}
.legal-page-content ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.legal-page-content li {
  margin-bottom: 0.5rem;
}
.legal-page-content a {
  color: #B8920A;
  text-decoration: underline;
  text-decoration-color: rgba(184, 146, 10, 0.35);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.legal-page-content a:hover {
  color: #8a6b00;
  text-decoration-color: #8a6b00;
}
.legal-page-content .legal-meta {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.legal-page-back {
  margin-top: 2.5rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO DESKTOP — Match mobile design (full-bleed photo + centered card)
   Photo carousel fills the viewport, centered transparent-black card
   holds the heading + subtext + CTA. White text, gold gradient middle.
═══════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

  /* Hero container: full-height with photo bg, hide white-bg decorations */
  #hero {
    min-height: 78vh !important;
    height: auto !important;
    background: transparent !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 0 !important;
  }

  /* Hide desktop decorations (white bg, grid pattern, animated blobs) */
  #hero .hero-bg,
  #hero .hero-grid,
  #hero .blob {
    display: none !important;
  }

  /* Hide the right-side image card column — photo is now full background */
  #hero .hero-card-col {
    display: none !important;
  }

  /* Show the JS-injected photo carousel as full-bg on desktop too */
  #heroMobileBg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    overflow: hidden !important;
  }
  #heroMobileBg .hero-mobile-bg-slide {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0;
    transition: opacity 1.1s ease;
  }
  #heroMobileBg .hero-mobile-bg-slide.active {
    opacity: 1;
  }

  /* Light dark overlay so card reads clearly without hiding the photo */
  #heroMobileOverlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.35) 100%) !important;
  }

  /* Center the content wrap (was 2-column on desktop, now 1-col centered) */
  #hero .hero-content-wrap {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    min-height: 78vh !important;
    padding: 2rem 1.5rem !important;
    width: 100%;
    max-width: 100%;
  }

  /* The card itself — transparent black with subtle blur, centered */
  #hero .hero-content-wrap > .reveal-up:first-child {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(1px) saturate(110%) !important;
    -webkit-backdrop-filter: blur(1px) saturate(110%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 18px !important;
    padding: 44px 40px !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    transform: none !important;
    max-width: 720px !important;
    width: 100%;
    color: #ffffff !important;
    text-align: center !important;
  }

  /* Clear any leftover pseudo-elements from earlier mobile/glass variants */
  #hero .hero-content-wrap > .reveal-up::before,
  #hero .hero-content-wrap > .reveal-up:first-child::before,
  #hero .hero-content-wrap > .reveal-up:first-child::after {
    display: none !important;
    content: none !important;
  }

  /* Heading: white, centered, no shadow — fixed width for equal stack */
  #hero .hero-heading {
    text-align: center !important;
    text-shadow: none !important;
    margin: 0 auto 1rem !important;
    max-width: 480px !important;
    width: 100% !important;
  }
  #hero .hero-h1-line {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    font-size: clamp(1.875rem, 3.2vw, 2.625rem) !important;
    line-height: 1.14 !important;
  }
  #hero .hero-h1-line.text-gradient {
    background: linear-gradient(135deg, #FFCD32 0%, #FFE066 55%, #FFCD32 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  /* Subtext: light white, centered — same width as heading */
  #hero .hero-subtext {
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: center !important;
    text-shadow: none !important;
    max-width: 480px !important;
    width: 100% !important;
    margin: 0 auto 1.5rem !important;
  }

  /* CTA centered — same width as heading/subtext, button fills it */
  #hero .hero-cta-group {
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    max-width: 480px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline {
    background: transparent !important;
    border: 1px solid #FFCD32 !important;
    color: #FFD85C !important;
    align-self: center !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 13px 22px !important;
    font-size: 0.9375rem !important;
    width: 50% !important;
    box-shadow: none !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline:hover {
    background: rgba(255, 216, 92, 0.15) !important;
    color: #FFD85C !important;
    border-color: var(--gold) !important;
  }

  /* Slide indicator dots in bottom-right of photo (same as mobile) */
  #heroMobileIndicator {
    display: flex !important;
    position: absolute !important;
    bottom: 1.75rem !important;
    right: 1.75rem !important;
    z-index: 12 !important;
    gap: 6px !important;
    align-items: center !important;
  }
  .hero-mob-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    transition: background 0.4s, width 0.4s, border-radius 0.4s;
  }
  .hero-mob-dot.active {
    width: 22px;
    border-radius: 5px;
    background: #FFD85C;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO TYPING ANIMATION — cycling word with blinking cursor
═══════════════════════════════════════════════════════════════════ */
.hero-typing {
  display: inline-block;
  background: linear-gradient(135deg, #FFCD32 0%, #FFE066 55%, #FFCD32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: inherit;
}
.hero-typing-cursor {
  display: inline-block;
  margin-left: 2px;
  color: #FFCD32;
  font-weight: 300;
  animation: heroTypingBlink 0.95s steps(2, start) infinite;
}
@keyframes heroTypingBlink {
  to { visibility: hidden; }
}

/* Inside the white/dark hero card on mobile, override the gradient to keep
   the cycling word readable on the chosen card background */
@media (max-width: 1023px) {
  #hero .hero-typing {
    background: linear-gradient(135deg, #FFD85C 0%, #FFE066 55%, #FFCD32 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #hero .hero-typing-cursor {
    color: #FFD85C;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO CARD CTA (mobile) — small, left-aligned, clean
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  #hero .hero-cta-group {
    flex-direction: row !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline {
    width: auto !important;
    flex: 0 0 auto !important;
    align-self: flex-start !important;
    padding: 9px 16px !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    background: transparent !important;
    border: 1px solid #FFCD32 !important;
    color: #B8920A !important;
    text-align: left !important;
    justify-content: flex-start !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline:hover {
    background: rgba(255, 216, 92, 0.10) !important;
    color: #B8920A !important;
    border-color: #B8920A !important;
  }

  /* Defensive: kill any lingering text-shadow inside the hero card */
  #hero .hero-content-wrap > .reveal-up:first-child,
  #hero .hero-content-wrap > .reveal-up:first-child *,
  #hero .hero-heading,
  #hero .hero-h1-line,
  #hero .hero-h1-line.text-gradient,
  #hero .hero-subtext {
    text-shadow: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO MOBILE V3 — Transparent black card, centered on photo
   - Photo fills the hero (no shortened height)
   - Very light overlay on photo
   - Card: semi-transparent black, centered, white text
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Photo hero: slightly shorter than full viewport */
  #hero {
    min-height: 78vh !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
  }

  /* Very light dark overlay so photo stays mostly visible */
  #heroMobileOverlay {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.20) 100%) !important;
  }

  /* Center the content vertically and horizontally on the photo */
  #hero .hero-content-wrap {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem !important;
    min-height: 78vh !important;
  }

  /* Card: transparent black, centered, white text */
  #hero .hero-content-wrap > .reveal-up:first-child {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(1px) saturate(110%) !important;
    -webkit-backdrop-filter: blur(1px) saturate(110%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 18px !important;
    padding: 28px 22px !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    transform: none !important;
    max-width: 90% !important;
    width: 100%;
    color: #ffffff !important;
    text-align: center !important;
  }

  /* Remove the top gold stroke and any pseudo-elements */
  #hero .hero-content-wrap > .reveal-up:first-child::before,
  #hero .hero-content-wrap > .reveal-up::before,
  #hero .hero-content-wrap > .reveal-up:first-child::after {
    display: none !important;
  }

  /* Heading: white, centered */
  #hero .hero-heading {
    text-align: center !important;
    margin-bottom: 1rem !important;
  }
  #hero .hero-h1-line {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
  }
  #hero .hero-h1-line.text-gradient {
    background: linear-gradient(135deg, #FFCD32 0%, #FFE066 55%, #FFCD32 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  /* Subtext: light white on transparent black */
  #hero .hero-subtext {
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: center !important;
  }

  /* CTA group centered */
  #hero .hero-cta-group {
    justify-content: center !important;
    flex-direction: row !important;
  }

  /* Explore button: transparent with gold outline (on the dark card) */
  #hero .hero-cta-secondary.hero-btn-outline {
    background: transparent !important;
    border: 1px solid #FFCD32 !important;
    color: #FFD85C !important;
    align-self: center !important;
    text-align: center !important;
    justify-content: center !important;
  }
  #hero .hero-cta-secondary.hero-btn-outline:hover {
    background: rgba(255, 216, 92, 0.15) !important;
    color: #FFD85C !important;
    border-color: var(--gold) !important;
  }

  /* Indicator dots become visible again since photo dominates */
  #heroMobileIndicator {
    display: flex !important;
  }

  /* Marquee returns to its normal top padding */
  .marquee-section {
    padding-top: 2rem !important;
  }
}