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

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

body {
  background: #000;
  overflow-x: hidden;
}

/* =========================
   HERO SECTION
========================= */
.HeroSection {
  position: relative;
  height: 350vh;
  overflow: clip;
  background: #000;
}

/* =========================
   STICKY VIDEO WRAPPER
========================= */
.VideoWrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* =========================
   VIDEO
========================= */
#heroVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  /* INITIAL CINEMATIC LOOK */
  transform: scale(1.15) translateZ(0);
  filter: brightness(1);
  /* PERFORMANCE */
  will-change: transform, filter;
  transform-origin: center center;
  backface-visibility: hidden;
  /* EXTRA SMOOTH */
  contain: paint;
}

/* =========================
   OVERLAY
========================= */
/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  /* LIGHTER OVERLAY */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2));
}

/* =========================
   TITLE
========================= */
.HeroTitle {
  color: #fff;
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  will-change: transform, opacity;
  /* PREMIUM TEXT LOOK */
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
  .HeroSection {
    height: 250vh;
  }
  .HeroTitle {
    font-size: clamp(2.5rem, 12vw, 5rem);
    letter-spacing: 0.08em;
    padding: 0 20px;
  }
  #heroVideo {
    transform: scale(1.08);
  }
}
/* OTHER SECTIONS */
.IntroSection,
.FooterSection {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #fff;
}

/* EXPERIENCE */
.ExperienceSection {
  position: relative;
  min-height: 300vh;
}

#IntroSection {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 700;
  /* background: #ece5db; */
}

#ExperienceSection {
  position: relative;
  min-height: 400vh;
  overflow: visible;
  /* IMPORTANT */
  /* PREMIUM AURORA BACKGROUND */
  background: radial-gradient(circle at top left, rgba(255, 183, 77, 0.18), transparent 28%), radial-gradient(circle at top right, rgba(255, 105, 180, 0.12), transparent 30%), radial-gradient(circle at bottom center, rgba(255, 140, 0, 0.1), transparent 35%), linear-gradient(to bottom, #fdf8f2 0%, #fffaf5 25%, #ffffff 50%, #fff8f2 75%, #f7f1ea 100%);
  /* FLOATING GLOW */
}
#ExperienceSection::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 180, 80, 0.18), transparent 70%);
  top: -250px;
  left: -250px;
  filter: blur(80px);
  animation: floatGlow 10s ease-in-out infinite alternate;
  z-index: 0;
}
#ExperienceSection::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 120, 160, 0.1), transparent 70%);
  bottom: -250px;
  right: -200px;
  filter: blur(100px);
  animation: floatGlow2 14s ease-in-out infinite alternate;
  z-index: 0;
}
#ExperienceSection {
  /* STICKY WRAPPER */
}
#ExperienceSection .StickyWrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: visible;
}
#ExperienceSection {
  /* FLOATING TITLES */
}
#ExperienceSection .ScrollTitles {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 20;
  pointer-events: none;
}
#ExperienceSection .ScrollTitle {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  font-size: clamp(42px, 7vw, 130px);
  font-weight: 900;
  letter-spacing: -5px;
  opacity: 0;
  transform: translateY(60px);
  background: linear-gradient(to bottom, rgba(255, 170, 80, 0.22), rgba(0, 0, 0, 0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#ExperienceSection {
  /* MODEL */
}
#ExperienceSection .ModelContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 80px 60px rgba(0, 0, 0, 0.15)) drop-shadow(0 20px 20px rgba(255, 170, 80, 0.18));
}
#ExperienceSection model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
}
#ExperienceSection {
  /* CONTENT BLOCKS */
}
#ExperienceSection .ContentBlock {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
  z-index: 15;
}
#ExperienceSection .ContentInner {
  max-width: 460px;
  opacity: 0;
  transform: translateY(80px);
  padding: 42px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
#ExperienceSection .Left {
  justify-content: flex-start;
  text-align: left;
}
#ExperienceSection .Right {
  justify-content: flex-end;
  text-align: right;
}
#ExperienceSection .Label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #ff9b42;
  font-weight: 700;
}
#ExperienceSection .ContentInner h2 {
  font-size: 72px;
  line-height: 0.92;
  margin-bottom: 28px;
  font-weight: 800;
  letter-spacing: -3px;
  background: linear-gradient(to bottom, #111111, #555555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#ExperienceSection .ContentInner p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
}
#ExperienceSection {
  /* GLASS EFFECT */
  /* ANIMATIONS */
}
@keyframes floatGlow {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  100% {
    transform: translateY(80px) translateX(50px);
  }
}
@keyframes floatGlow2 {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  100% {
    transform: translateY(-60px) translateX(-40px);
  }
}
#ExperienceSection {
  /* RESPONSIVE */
}
@media (max-width: 1100px) {
  #ExperienceSection .ModelContainer {
    width: 500px;
    height: 500px;
  }
  #ExperienceSection .ContentInner h2 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  #ExperienceSection .ModelContainer {
    width: 340px;
    height: 340px;
  }
  #ExperienceSection .ContentBlock {
    justify-content: center !important;
    text-align: center !important;
    padding: 0 24px;
  }
  #ExperienceSection .ContentInner {
    max-width: 100%;
    padding: 28px;
  }
  #ExperienceSection .ContentInner h2 {
    font-size: 42px;
  }
  #ExperienceSection .GlassBg {
    width: 280px;
    height: 280px;
  }
  #ExperienceSection .ScrollTitle {
    font-size: 48px;
  }
}
#ExperienceSection .GirlImage {
  margin: auto;
  text-align: center;
  overflow: hidden;
}
#ExperienceSection .GirlImage img {
  margin-bottom: -270px;
}

#FooterSection {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 700;
  background: #111;
  color: white;
}/*# sourceMappingURL=style.css.map */