/* ========== INTRO / LOADING SCREEN ========== */
.intro-screen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
.intro-screen.exit { opacity: 0; pointer-events: none; }

.intro-inner { display: inline-flex; flex-direction: column; align-items: stretch; }

.intro-letters {
  display: flex;
  justify-content: center;
  gap: 0.04em;
}
.intro-letters span {
  display: inline-block;
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  opacity: 0;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-d { animation-name: introFromLeft;   animation-delay: 0.1s; }
.intro-s { animation-name: introFromBottom; animation-delay: 0.3s; }
.intro-c { animation-name: introFromRight;  animation-delay: 0.5s; }

@keyframes introFromLeft {
  from { opacity: 1; transform: translateX(-180px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes introFromBottom {
  from { opacity: 1; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes introFromRight {
  from { opacity: 1; transform: translateX(180px); }
  to   { opacity: 1; transform: translateX(0); }
}

.intro-sub {
  color: #fff;
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: 55px;
  opacity: 0;
  animation: introSubFade 0.6s forwards;
  animation-delay: 1.15s;
}
@keyframes introSubFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .intro-letters span { font-size: clamp(120px, 30vw, 160px); }
  .intro-sub { margin-top: 42px; font-size: clamp(14px, 3.5vw, 18px); padding: 0 4px; }
}

/* ========== SCROLL REVEAL ========== */
[data-animate] { opacity: 0; transition: opacity 1s ease, transform 1s ease; }
[data-animate="fadeIn"] { opacity: 0; }
[data-animate="fadeInUp"] { opacity: 0; transform: translateY(25px); }
[data-animate="fadeInLeft"] { opacity: 0; transform: translateX(-35px); }

[data-animate].in-view { opacity: 1; transform: translate(0, 0); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1s; }

.intro-motto {
  color: #C9A84C;
  font-size: clamp(11px, 1.4vw, 16px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  text-align: center;
  letter-spacing: 0.25em;
  margin-top: 14px;
  opacity: 0;
  animation: introSubFade 0.6s forwards;
  animation-delay: 1.6s;
}
@media (max-width: 767px) {
  .intro-motto { font-size: clamp(11px, 3vw, 16px); margin-top: 10px; }
}
