/* ============================================================
   SHOWCASE.CSS — BVardhan Group
   Cinematic "rising building" section (home page).
   The tower is revealed bottom-to-top on scroll via fx.js.
   Without JS / with reduced-motion, the tower simply shows in full.
   ============================================================ */

.showcase {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.showcase__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(72px, 9vw, 150px) clamp(20px, 5vw, 80px);
  min-height: 100vh;
}

.showcase__copy {
  flex: 0 0 42%;
  position: relative;
  z-index: 2;
}

.showcase__title {
  font-family: var(--font-serif);
  color: var(--ivory);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 16px 0 20px;
}

.showcase__sub {
  color: var(--stone);
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 34px;
}

.showcase__stage {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
}

.showcase__tower {
  position: relative;
  width: min(440px, 92%);
  align-self: center;
}

.showcase__tower img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: bottom center;
  will-change: clip-path, transform;
}

/* Warm glow that swells up from the base as the tower rises */
.showcase__glow {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 55%;
  background: radial-gradient(ellipse at center 80%, rgba(221,153,51,0.40), transparent 70%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

@media (max-width: 860px) {
  .showcase__inner {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    gap: 28px;
    padding: 56px clamp(20px, 5vw, 80px);
  }
  .showcase__copy { flex: none; }
  .showcase__stage { width: 100%; }
  .showcase__tower { width: min(340px, 78%); }
  .showcase__sub { margin-left: auto; margin-right: auto; }
}
