/* ============================================================
   Shanta Holdings — homepage recreation
   Original implementation in vanilla HTML/CSS/JS
   ============================================================ */

:root {
  --primary-color: #978c21;
  --secondary-color: #8e8a1f;
  --primary-color-two: #3c3c3b;
  --secondary-color-two: #c6c6c6;
  --background: #fffaf4;
  --dim-bg: #ece5da;
  --footer-bg: #f3ebdd;
  --map-bg: #d7d2ce;
  --feature-anim: #d5ded4;
  --card-bg: #ffffff;
  --white: #fff;
  --black: #000;
}

html[data-theme="dark"] {
  --primary-color-two: #f2f2f2;
  --background: #212121;
  --dim-bg: #2c2c2c;
  --footer-bg: #5f613a;
  --map-bg: #242424;
  --feature-anim: #3f4f3f;
  --card-bg: #2a2a2a;
}

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  font-family: 'Mulish', 'Avenir', sans-serif;
  background: var(--background);
  color: var(--primary-color-two);
  overflow-x: hidden;
  transition: background .5s ease, color .5s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.container { width: 85%; max-width: 1400px; margin: 0 auto; }
.section { padding: 90px 0; }

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}
.section-heading b { font-weight: 800; color: var(--primary-color); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 100000000;
  background: var(--background);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__leaf { width: 70px; height: 70px; animation: leafSpin 1.6s ease-in-out infinite; }
@keyframes leafSpin {
  0% { transform: rotate(0deg) scale(1); opacity: .6; }
  50% { transform: rotate(180deg) scale(1.15); opacity: 1; }
  100% { transform: rotate(360deg) scale(1); opacity: .6; }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 27px 7.5%;
  background: var(--background);
  transition: transform .7s ease, background .5s ease;
}
.navbar.nav-hidden { transform: translateY(-110%); }
/* intro state: hidden above, dropped in by the opening timeline */
.navbar.nav-intro { transform: translateY(-100%); transition: none; }
.navbar__logo { width: 190px; height: 46px; display: block; }
.navbar__logo svg, .footer__logo { width: 100%; height: 100%; }
.logo__text { fill: var(--primary-color-two); transition: fill .5s ease; }
.logo__wordmark { font-family: 'Mulish', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: 5px; }
.logo__sub { font-family: 'Mulish', sans-serif; font-size: 8.5px; font-weight: 500; letter-spacing: 4.6px; }

.navbar__links { display: flex; align-items: center; user-select: none; }
.navbar__links .menu-text {
  color: var(--primary-color-two);
  font-size: 1rem; font-weight: 600; letter-spacing: .14em; margin-right: 1rem;
  transition: color .3s ease;
}
.menu-btn-wrapper { display: flex; align-items: center; cursor: pointer; margin-left: 1.6rem; }
.menu-btn-wrapper:hover .menu-text { color: var(--primary-color); }
.menu-btn-wrapper:hover .menu-icon { height: 14px; }
.menu-icon {
  display: flex; flex-direction: column; justify-content: space-between;
  height: 10px; transition: height .3s ease;
}
.menu-icon .line1, .menu-icon .line2 {
  width: 30px; height: 2px; background: var(--primary-color);
  transition: background .3s ease;
}

/* theme toggle */
.theme-toggle {
  width: 52px; height: 26px; border-radius: 20px;
  background: var(--dim-bg); position: relative;
  transition: background .4s ease;
}
.theme-toggle__ball {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-color);
  transition: transform .4s ease;
}
html[data-theme="dark"] .theme-toggle__ball { transform: translateX(26px); }

/* ============ DRAWER ============ */
.backdrop {
  position: fixed; inset: 0; z-index: 9999998;
  background: rgba(0,0,0,.35);
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.backdrop.open { opacity: 1; visibility: visible; }
.drawerItems {
  position: fixed; top: 0; right: 0; z-index: 9999999;
  width: min(100%, 520px); height: 100svh;
  background: #15171b; padding: 40px 60px;
  transform: translateX(105%);
  transition: transform .6s cubic-bezier(.77, 0, .175, 1);
  display: flex; flex-direction: column;
}
.drawerItems.open { transform: translateX(0); }
.menu_close_icon {
  display: flex; align-items: center; justify-content: flex-end;
  color: #fff; cursor: pointer; user-select: none;
}
.menu_close_icon span { font-size: 14px; font-weight: 500; letter-spacing: .14em; margin-right: 10px; }
.menu_close_icon:hover span { color: var(--primary-color); }
.drawerItemsContent {
  display: flex; flex-direction: column; height: 100%;
  overflow: auto; scrollbar-width: none; margin-top: 3rem;
}
.menu_parents_links { display: flex; flex-direction: column; }
.parent_link {
  color: #fff; font-size: 1.7rem; font-weight: 300;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
  opacity: 0; transform: translateY(25px);
  transition: color .3s ease, padding-left .3s ease;
}
.drawerItems.open .parent_link { animation: drawerLink .6s ease forwards; }
.drawerItems.open .parent_link:nth-child(1) { animation-delay: .15s; }
.drawerItems.open .parent_link:nth-child(2) { animation-delay: .22s; }
.drawerItems.open .parent_link:nth-child(3) { animation-delay: .29s; }
.drawerItems.open .parent_link:nth-child(4) { animation-delay: .36s; }
.drawerItems.open .parent_link:nth-child(5) { animation-delay: .43s; }
.drawerItems.open .parent_link:nth-child(6) { animation-delay: .5s; }
.drawerItems.open .parent_link:nth-child(7) { animation-delay: .57s; }
.drawerItems.open .parent_link:nth-child(8) { animation-delay: .64s; }
@keyframes drawerLink { to { opacity: 1; transform: translateY(0); } }
.parent_link:hover { color: var(--primary-color); padding-left: 12px; }

.navbar-social { margin-top: auto; padding-top: 2.5rem; }
.social-title { color: var(--secondary-color-two); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.icons { display: flex; gap: 14px; }
.social_icons {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all .3s ease;
}
.social_icons svg { width: 17px; height: 17px; }
.social_icons:hover { background: var(--primary-color); border-color: var(--primary-color); transform: translateY(-4px); }
.footer .social_icons { color: var(--primary-color-two); border-color: var(--primary-color-two); }
.footer .social_icons:hover { color: #fff; }

/* ============ HERO ============ */
/* Original opening: cream background, huge centered title fades in word
   by word, then the banner strip expands horizontally via clip-path. */
.home-hero {
  position: relative;
  background-color: var(--background);
  padding-top: 150px;
}
.banner-title-wrapper {
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-color-two);
  padding: 0 7.5% 50px;
}
.banner-title {
  color: var(--primary-color-two);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .02em;
  line-height: 120%;
  font-size: calc(-0.33px + 7.04vw);
  white-space: nowrap;
}
@media (min-width: 1440px) { .banner-title { font-size: 101px; } }
#setting, #standards { opacity: 0; will-change: opacity; }

.banner-cover {
  position: relative;
  width: 100vw; margin: 0 auto;
  overflow: hidden;
  height: 100vh;
  clip-path: inset(0vw 93vw);
  will-change: clip-path;
}
@media (max-width: 1199.98px) { .banner-cover { height: calc(100vh - 100px); } }
@media (max-width: 991.98px) { .banner-cover { height: calc(100vh - 150px); } }
@media (max-width: 767.98px) { .banner-cover { height: 78svh; } }

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  transform: scale(1);
}
.hero__slide.active { opacity: 1; z-index: 1; }
/* active slide breathes: scale 1 -> 1.2 -> 1 over 5s, like the original */
.hero__slide.zoom { animation: scaleInOut 5s infinite; }
@keyframes scaleInOut {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ============ INTRO (floating image + video) ============ */
.intro { padding-top: 10vh; overflow: hidden; position: relative; }
.home-about {
  display: grid; grid-template-columns: 1fr 2fr;
  padding: 50px 0 3rem; align-items: start;
}
.home-about .float-img { min-width: 420px; }
.home-about__desc {
  color: var(--primary-color-two);
  font-weight: 500; line-height: 1.5;
  font-size: clamp(16px, calc(13px + .83vw), 25px);
  max-width: 950px; margin-inline-start: auto;
  /* floats up + fades in, driven by scroll */
  opacity: 0; transform: translateY(80px);
  transition: transform .4s ease-out, opacity .4s ease-out;
  will-change: transform, opacity;
}
/* small image floats over the top-left corner of the video area;
   starts low and rises as you scroll */
.overlapeImage {
  position: absolute; top: 300px; left: 7.5%; z-index: 8;
  width: 300px; height: 200px; object-fit: cover;
  transform: translateY(160px);
  transition: transform .4s ease-out;
  will-change: transform;
}

.video_area {
  position: relative; width: 100%;
  display: flex; justify-content: center;
  padding: 70px 0 100px;
}
.video_area #video {
  position: relative; width: 80%;
  /* starts slightly small, grows as you scroll */
  transform: scale(.88);
  transition: transform .4s ease-out;
  will-change: transform;
}
.video_area video { width: 100%; display: block; object-fit: cover; background: var(--primary-color); }
.sound-btn { position: absolute; right: 3%; bottom: 6%; width: 40px; height: 40px; }
.sound-btn svg { width: 100%; height: 100%; }
.sound-btn.muted .sound-on { display: none; }

/* giant strapline marquee: filled text behind video, outlined text in front */
.strap {
  position: absolute; top: 70px; left: 0; right: 0;
  transform: translateY(-50%);
  margin: 0; overflow: hidden; white-space: nowrap;
  font-weight: 500; text-transform: uppercase;
  font-size: clamp(30px, calc(23.33px + 1.85vw), 50px);
  line-height: 1.2;
}
.strap__track {
  display: inline-block; white-space: nowrap;
  animation: strapMove 45s linear infinite;
  will-change: transform;
}
@keyframes strapMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strap--fill { color: var(--primary-color-two); z-index: 0; }
.strap--outline {
  color: transparent; z-index: 100;
  -webkit-text-stroke: .5px #fff;
  pointer-events: none;
}

/* ============ FEATURED PROJECTS (full-bleed slider) ============ */
.slider_area {
  position: relative; width: 100%; height: 80vh;
  overflow: hidden; background: gray; color: #fff;
  /* entrance: starts inset like a framed card, expands to full bleed on scroll */
  clip-path: inset(10vh 12vw round 28px);
  transition: clip-path .45s ease-out;
  will-change: clip-path;
}
.slider_area .slide_info, .slider_area .featured__slides {
  transition: opacity .45s ease-out, transform .45s ease-out;
  will-change: opacity, transform;
}
.featured__slides { position: absolute; inset: 0; }
.featured__slide { position: absolute; inset: 0; overflow: hidden; }
.featured__slide .slide_bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.featured__slide::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4); z-index: 1;
}
/* entering slide starts in view */
.featured__slide.enter-next { transform: translateY(60%) rotate(5deg); }
.featured__slide.enter-prev { transform: translateY(-60%) rotate(-5deg); }
.featured__slide.moving {
  transition: transform 1.3s cubic-bezier(.46, 0, 0, .86), clip-path 1.3s cubic-bezier(.46, 0, 0, .86);
}
.featured__slide.center { transform: translateY(0) rotate(0); clip-path: inset(0 0 0 0); }
.featured__slide.leave-next { clip-path: inset(0 0 55% 0); transform: translateY(-50%); z-index: 1; }
.featured__slide.leave-prev { clip-path: inset(55% 0 0 0); transform: translateY(50%); z-index: 1; }
.featured__slide.enter-next .slide_bg, .featured__slide.enter-prev .slide_bg { animation: bgScale 5s ease-out forwards; }
@keyframes bgScale { 0% { transform: scale(1.2); } 100% { transform: scale(1); } }

.slide_info {
  position: absolute; inset: 0; z-index: 5;
  display: flex; justify-content: space-between;
  padding: 7% 7% 4%;
  pointer-events: none;
}
.slide_info__left {
  display: flex; flex-direction: column; justify-content: flex-end;
  pointer-events: auto;
}
.featured__item { display: none; }
.featured__item.active { display: block; }
.featured__item .project_type {
  color: #fff; font-weight: 400; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 1.2rem;
  font-size: clamp(12px, calc(11.08px + .26vw), 16px);
  opacity: 0; animation: fadeIn .5s ease-in-out .3s forwards;
}
.featured__item .project-title {
  font-weight: 500; text-transform: uppercase; line-height: 94%;
  font-size: clamp(25px, calc(20px + 1.39vw), 40px);
  padding-bottom: 1.8rem; margin-left: -3px;
  opacity: 0; animation: fadeIn .5s ease-in-out .45s forwards;
}
.featured__item .project-address {
  font-weight: 400;
  font-size: clamp(16px, calc(14.67px + .37vw), 20px);
  opacity: 0; animation: fadeIn .5s ease-in-out .6s forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.featured__item .read_more {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 70px; margin-top: 2.2rem;
  color: #fff; cursor: pointer;
  font-size: clamp(15px, calc(15.08px + .26vw), 20px);
  opacity: 0; animation: fadeIn .5s ease-in-out .75s forwards;
  transition: all .2s ease-in-out;
}
.featured__item .read_more svg { width: 26px; height: 26px; transition: all .2s ease-in-out; }
.featured__item .read_more:hover { color: var(--primary-color); }
.featured__item .read_more:hover svg { transform: scale(1.25) translateX(4px); }

.navigation-controller {
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-end; gap: 36px;
  pointer-events: auto;
}
.pop_video { width: 500px; height: 300px; max-width: 40vw; overflow: hidden; position: relative; }
.pop_video video, .pop_video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pop_video:empty { display: none; }

.stats_bar { display: flex; align-items: center; }
.bars { display: flex; align-items: center; }
.bars .bar {
  width: 15px; height: 3px; margin-right: 10px;
  background: rgba(255,255,255,.5); cursor: pointer;
  transition: all .5s ease-in-out; display: flex;
}
.bars .bar.active { width: 50px; }
.bars .bar.active .active-progress {
  width: 0; height: 100%; background: #fff;
  animation: extendBar 8s linear infinite;
}
@keyframes extendBar { 0% { width: 0; } 100% { width: 100%; } }
.navigation { display: flex; align-items: center; gap: 26px; margin-left: 26px; }
.prev-button, .next-button { width: 50px; height: 15px; display: flex; align-items: center; }
.prev-button svg, .next-button svg { width: 50px; height: 24px; transition: all .5s ease-in-out; }
.prev-button:hover svg, .next-button:hover svg { transform: scale(1.2); }

/* ============ STATS ============ */
.home_stats_area {
  background: var(--background); position: relative;
  margin-top: calc(38.46px + 3.2vw); padding: 0 7.5%;
  overflow: hidden;
}
.stats_heading {
  color: var(--primary-color-two); text-align: center;
  font-weight: 500; text-transform: uppercase; line-height: 120%;
  font-size: clamp(30px, calc(23.33px + 1.85vw), 50px);
}
.stats_heading b { font-weight: 800; }
/* word-by-word reveal: each word rises softly out of a blur */
.stats_heading .w {
  display: inline-block;
  opacity: 0; transform: translateY(.9em) rotate(2deg);
  filter: blur(8px);
  transition: opacity .8s ease, filter .8s ease,
              transform .8s cubic-bezier(.22, 1, .36, 1);
}
.stats_heading.in-view .w {
  opacity: 1; transform: translateY(0) rotate(0);
  filter: blur(0);
}
.details_stats {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 50px; padding-bottom: 60px; position: relative;
}
.stats_col { display: flex; flex-direction: column; position: relative; z-index: 2; }
.stats_col .single_stat { width: 300px; padding: 0 20px; }
.stats_col .single_stat:not(:first-child) { margin-top: 8rem; }
.stats_col--left .single_stat { text-align: right; }
/* stats slide in from the right, staggered; reverses on scroll up */
.single_stat {
  opacity: 0; transform: translateX(140px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.home_stats_area.stats-in .single_stat { opacity: 1; transform: translateX(0); }
.stat__value {
  display: block; color: var(--secondary-color); font-weight: 500;
  font-size: calc(25.38px + 1.28vw); margin-bottom: .3rem;
}
.single_stat p {
  color: var(--primary-color-two);
  font-size: calc(13.62px + .38vw); line-height: 1.5;
}
.building_image {
  position: absolute; bottom: 0; left: 50%;
  max-height: 100%; z-index: 1;
  transform: translate(-50%, 100%) scale(.82);
  transform-origin: bottom center;
  transition: transform .6s ease-out;
  will-change: transform;
}
.building_image img {
  display: block; width: auto; height: auto;
  max-width: min(800px, 42vw);
  max-height: 100%;
  margin: 0 auto;
}

/* ============ CITY MAP ============ */
.citymap { background: var(--map-bg); transition: background .5s ease; }
.citymap__wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.citymap__stage { position: relative; }
.citymap__img { width: 100%; }
.city-pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; cursor: pointer;
  z-index: 2;
}
.city-pin__dot {
  width: 18px; height: 18px; border-radius: 50% 50% 50% 0;
  background: var(--primary-color); transform: rotate(-45deg);
  position: relative; transition: transform .3s ease, background .3s ease;
}
.city-pin__dot::after {
  content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #fff;
}
.city-pin__ring {
  position: absolute; bottom: -7px; width: 24px; height: 10px;
  border-radius: 50%; background: rgba(151,140,33,.3);
  animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.city-pin__label {
  margin-top: 6px; padding: 3px 10px; border-radius: 20px;
  background: var(--background); color: var(--primary-color-two);
  font-size: .72rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
}
.city-pin:hover .city-pin__label, .city-pin.active .city-pin__label { opacity: 1; transform: translateY(0); }
.city-pin:hover .city-pin__dot, .city-pin.active .city-pin__dot { transform: rotate(-45deg) scale(1.25); background: var(--secondary-color); }

.citymap__panel {
  background: var(--card-bg); padding: 2.2rem; min-height: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
  transition: background .5s ease;
}
.citymap__hint { font-weight: 300; opacity: .7; line-height: 1.8; }
.citymap__panel h3 {
  font-size: 1.6rem; font-weight: 300; letter-spacing: .05em; margin-bottom: 1.2rem;
}
.citymap__panel h3 b { color: var(--primary-color); font-weight: 800; }
.area-map { width: 110px; margin-bottom: 1.4rem; filter: drop-shadow(0 8px 18px rgba(0,0,0,.15)); }
.area-projects { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.2rem; }
.area-projects li {
  font-size: .92rem; font-weight: 400; padding-left: 1.1rem; position: relative;
  opacity: 0; transform: translateX(-12px); animation: fadeRight .5s ease forwards;
}
@keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }
.area-projects li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary-color);
}

/* ============ EXPLORE (video slider) ============ */
.explore {
  background: var(--background);
  margin-bottom: 100px;
  padding-top: 90px;
  position: relative;
}
.explore__heading {
  width: 100%;
  margin: 0 auto 60px;
  padding: 0 7.5%;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-color-two);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .18em;
  font-size: clamp(3rem, calc(1.5rem + 9vw), 7.5rem);
  opacity: 0;
  transform: translateX(160px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.explore__heading.in-view {
  opacity: 1;
  transform: translateX(0);
}
.explore__slider {
  position: relative;
  opacity: 0;
  transform: translateY(80px);
  will-change: opacity, transform;
}
.explore__viewport {
  overflow: hidden;
  width: 48vw;
  max-width: 100vw;
  margin: 0 auto;
  will-change: width;
}
.explore__track {
  display: flex;
  transition: transform 1s cubic-bezier(.43, .02, 0, 1.01);
}
.explore-slide {
  flex: 0 0 100%;
  padding-top: clamp(40px, 6vw, 80px);
  display: flex; justify-content: center;
}
.explore-slide .slider_content {
  position: relative;
  width: 100%;
}
.explore-slide .media {
  position: relative; z-index: 2;
  width: 100%;
  height: var(--explore-h, 27vw);
  background: #000; overflow: hidden;
  will-change: height;
}
.explore-slide video, .explore-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.explore-slide .slider_title {
  position: absolute; top: 0; right: 30px; margin: 0;
  transform: translateY(-50%);
  font-weight: 500; text-transform: uppercase; white-space: nowrap;
  font-size: calc(-0.33px + 7.04vw);
  opacity: 0; visibility: hidden; pointer-events: none;
}
@media (min-width: 1440px) { .explore-slide .slider_title { font-size: 101px; } }
.explore-slide .slider_title--fill { color: var(--primary-color-two); z-index: 1; }
.explore-slide .slider_title--outline {
  color: transparent; z-index: 3;
  -webkit-text-stroke: 2px #fff;
}
.explore-slide.is-active .slider_title {
  animation: sliderTitleIn 3s ease-in-out forwards;
}
@keyframes sliderTitleIn {
  from { opacity: 0; visibility: hidden; }
  to { opacity: 1; visibility: visible; }
}
.explore-slide .visit-link {
  position: absolute; right: 0; bottom: -52px; z-index: 4;
  color: var(--primary-color-two); font-size: .95rem; letter-spacing: .12em;
  text-transform: uppercase; transition: color .3s ease;
}
.explore-slide .visit-link:hover { color: var(--primary-color); }

.explore-navigation {
  position: static;
  display: flex; align-items: center; gap: 40px;
  justify-content: center;
  margin-top: 30px;
  padding: 20px 30%;
  width: 100%;
  color: var(--primary-color-two);
}
.business-navigation {
  position: absolute; bottom: 0; right: 0;
  width: 100%; z-index: 10;
  display: flex; align-items: center; gap: 40px;
  justify-content: flex-end; padding: 0 30% 0 0;
  color: var(--primary-color-two);
}
.nav-arrow { padding: 10px; color: inherit; }
.nav-arrow svg { width: 50px; height: 24px; transition: all .5s ease-in-out; }
.nav-arrow:hover svg { transform: scale(1.2); }
.nav-arrow:disabled { opacity: .5; }

/* ============ BUSINESSES ============ */
.businesses-wrapper { padding: 100px 0 60px; overflow: hidden; }
.businesses-wrapper-content { position: relative; padding-top: 60px; }
.fill_text, .outline_text {
  position: absolute; top: 60px; left: 0; margin: 0;
  transform: translateY(-50%);
  font-weight: 500; text-transform: uppercase; white-space: nowrap;
  font-size: clamp(50px, calc(16.33px + 9.35vw), 151px);
  pointer-events: none;
}
.fill_text { color: var(--primary-color-two); z-index: 2; }
.outline_text { color: transparent; -webkit-text-stroke: 2px #fff; z-index: 4; }

.card_list { position: relative; z-index: 3; }
.biz-viewport { overflow: hidden; }
.biz-track {
  display: flex; gap: 20px;
  transition: transform .8s cubic-bezier(.77, 0, .175, 1);
}
.businesses_card {
  flex: 0 0 calc((100% - 40px) / 3);
  aspect-ratio: 2/3; position: relative; cursor: pointer; overflow: hidden;
}
.businesses_card img { width: 100%; height: 100%; object-fit: cover; }
.businesses_card .plus-icon {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.businesses_card .plus-icon svg { width: 44px; height: 44px; transition: all .5s ease-in-out; }
.businesses_card:hover .plus-icon svg { opacity: 0; transform: rotate(45deg); }
.businesses_card_content {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 100px;
  background: rgba(0,0,0,.7); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px 25px; transition: all .5s ease-in-out; z-index: 3;
}
.businesses_card:hover .businesses_card_content { height: 100%; }
.businesses_card_content h3 {
  font-weight: 500; font-size: clamp(16px, calc(13px + .83vw), 25px);
}
.businesses_card_content .links {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 0; overflow: hidden; transition: all .5s ease-in-out;
}
.businesses_card:hover .links { margin-top: 20px; }
.businesses_card_content .links a, .businesses_card_content .links span {
  display: flex; align-items: center; gap: 10px;
  color: #fff; height: 0; opacity: 0; font-size: .95rem;
  transition: all .5s ease-in-out;
}
.businesses_card:hover .links a, .businesses_card:hover .links span { height: 24px; opacity: 1; }
.businesses_card_content .links a:hover { margin-left: 10px; color: var(--primary-color); }

/* ============ CONNECT ============ */
.connect__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; align-items: center; }
.connect__img { overflow: hidden; }
.connect__img img { transition: transform .9s ease; }
.connect__img:hover img { transform: scale(1.05); }
.connect__card {
  display: block; position: relative;
  padding: 1.9rem 4.2rem 1.9rem 1.9rem; margin-bottom: 1.4rem;
  background: var(--card-bg);
  border-left: 3px solid var(--primary-color);
  box-shadow: 0 16px 44px rgba(0,0,0,.09);
  transition: transform .4s ease, box-shadow .4s ease, background .5s ease;
}
.connect__card:hover { transform: translateX(12px); box-shadow: 0 22px 55px rgba(0,0,0,.16); }
.connect__card h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: .04em; margin-bottom: .6rem; color: var(--primary-color); }
.connect__card p { font-size: .94rem; font-weight: 300; line-height: 1.7; opacity: .85; }
.connect__arrow {
  position: absolute; right: 1.6rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--primary-color); transition: transform .35s ease;
}
.connect__card:hover .connect__arrow { transform: translateY(-50%) translateX(8px); }

/* ============ FOOTER ============ */
.footer { background: var(--footer-bg); padding-top: 70px; transition: background .5s ease; }
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px;
  padding-bottom: 50px;
}
.footer__logo { width: 200px; height: 50px; }
.footer__tagline { margin-top: .9rem; font-weight: 300; letter-spacing: .25em; text-transform: lowercase; color: var(--primary-color); }
.footer__links { display: flex; flex-direction: column; gap: .65rem; }
.footer__links a { font-size: .95rem; font-weight: 400; transition: color .3s ease, padding-left .3s ease; }
.footer__links a:hover { color: var(--primary-color); padding-left: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 1.4rem 0; text-align: center; font-size: .82rem; opacity: .75;
}

/* ============ VIDEO MODAL ============ */
.video-modal {
  position: fixed; inset: 0; z-index: 100000000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal video { width: min(1100px, 92vw); max-height: 82vh; }
.video-modal__close {
  position: absolute; top: 26px; right: 40px;
  color: #fff; font-size: 3rem; font-weight: 300; line-height: 1;
  transition: color .3s ease, transform .3s ease;
}
.video-modal__close:hover { color: var(--primary-color); transform: rotate(90deg); }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .citymap__wrap, .connect__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .home-about { grid-template-columns: 1fr; gap: 30px; }
  .home-about .float-img { display: none; }
  .overlapeImage { display: none; }
  .video_area #video { width: 100%; }
  .details_stats { flex-direction: column; align-items: center; gap: 0; padding-bottom: 40px; }
  .building_image { display: none; }
  .stats_col .single_stat { width: auto; text-align: left !important; }
  .stats_col .single_stat:not(:first-child) { margin-top: 2rem; }
  .stats_col--right .single_stat { margin-top: 2rem; }
  .pop_video { display: none; }
  .businesses_card { flex: 0 0 calc((100% - 20px) / 2); }
  .explore-navigation { padding: 20px 7.5%; }
  .business-navigation { padding: 0 7.5% 0 0; }
}
@media (max-width: 576.98px) {
  .explore__heading {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, calc(1rem + 12vw), 4rem);
    letter-spacing: .12em;
    transform: translateX(80px);
  }
  .explore__heading.in-view { transform: translateX(0); }
  .navbar { padding: 20px 7.5%; }
  .navbar__logo { width: 120px; height: 30px; }
  .menu-text { display: none; }
  .drawerItems { padding: 28px 35px 20px; width: 100%; }
  .section { padding: 60px 0; }
  .slider_area { height: 100svh; }
  .slide_info { flex-direction: column; justify-content: flex-end; padding: 0 7.5% 7.5%; }
  .navigation-controller { align-items: flex-start; padding-top: 30px; }
  .area-projects { grid-template-columns: 1fr; }
  .businesses_card { flex: 0 0 100%; }
}
