/* ── Preloader ── */
#preloader-root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1b3d2c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
  overflow: hidden;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#preloader-root.plr-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#plr-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
#plr-logo-wrap.plr-visible {
  opacity: 1;
  transform: translateY(0);
}
#plr-logo-svg-container {
  position: relative;
  width: 80px;
  height: 80px;
}
#plr-brand-text {
  font-size: 42px;
  font-weight: 400;
      font-family: "Scotch Display Roman", serif;
  letter-spacing: 0.28em;
  display: flex;
  user-select: none;
}
@media screen and (max-width:600px){
  #plr-brand-text {
  font-size: 26px;
  font-weight: 400;
      font-family: "Scotch Display Roman", serif;
  letter-spacing: 0.28em;
  display: flex;
  user-select: none;
}
}
.plr-char {
  display: inline-block;
  color: #fff;
  transition: color 0.35s ease;
}
.plr-char.plr-lit {
  color: #957d50 ;
}
#plr-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#plr-bar-wrap.plr-visible {
  opacity: 1;
}
#plr-bar {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.08s linear;
}
body.plr-active {
  overflow: hidden;
}
