/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: var(--maroon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}

/* Верхняя и нижняя половины для split-exit */
#preloader-top,
#preloader-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--maroon);
  z-index: 1;
}

#preloader-top    { top: 0; }
#preloader-bottom { bottom: 0; }

/* Контент preloader поверх половин */
.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* SVG монограмма PP */
.preloader-arabic {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: translateY(-20px);
}

/* Логотип дизайнера */
.preloader-logo-img {
  width: clamp(200px, 38vw, 320px);
  height: auto;
  display: block;
}

/* Прогресс-линия — 3px широкая */
.preloader-line-wrap {
  margin-top: 32px;
  width: clamp(280px, 42vw, 520px);
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  opacity: 0;
}

.preloader-line-fill {
  height: 100%;
  width: 0%;
  background: #e2be6e;
}
