html, body { height: 100%; overflow-x: hidden;} 
body { overflow-x: hidden; }  /* ok */

/* =========================
   PRELOADER
========================= */
.preloader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity .35s ease, visibility .35s ease;
}

.preloader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner{
  text-align: center;
  padding: 24px;
}

.logo-wrap{
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}

.preloader-logo{
  width: 74px;
  height: 74px;
  object-fit: contain;
  animation: logoPulse 1.3s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.08));
}

.ring{
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 2px solid rgba(107,63,42,.25); /* brownMain */
  border-top-color: rgba(107,63,42,.95);
  animation: spin 1.05s linear infinite;
}

.ring2{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(227,179,65,.25); /* brandGold */
  border-top-color: rgba(227,179,65,.95);
  animation: spin 1.05s linear infinite reverse;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}