:root{
  --bma-pearl-a:#FDFCFB;
  --bma-pearl-b:#F6F6F4;
  --bma-pearl-c:#F1F1F3;
  --bma-navy:#16324F;
  --bma-blue:#2C6CB0;
}

html.bma-loading{ overflow:hidden; }

.bma-preloader{
  position:fixed; inset:0;
  background: radial-gradient(140% 110% at 50% 0%, var(--bma-pearl-a) 0%, var(--bma-pearl-b) 55%, var(--bma-pearl-c) 100%);
  display:flex; align-items:center; justify-content:center;
  z-index:999999;
}

.bma-stage{
  position:relative;
  width:min(90vw,640px);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:clamp(10px,2vh,20px);
}

.bma-stage.is-hero{
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:0;
}

.bma-row{ display:flex; align-items:center; gap:clamp(8px,1vw,12px); }
.bma-stage.is-hero .bma-row{ display:contents; }

.bma-letter{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  color:var(--bma-navy);
  font-size:clamp(30px,4.2vw,46px);
  line-height:1;
  display:inline-block;
  letter-spacing:0.02em;
  will-change:transform;
}

.bma-stage.is-hero .bma-letter{
  font-size:clamp(64px,13vw,128px);
  letter-spacing:0.04em;
  margin-right:0.05em;
}
.bma-stage.is-hero .bma-letter:last-child{ margin-right:0; }

.bma-rest{
  font-family:'Manrope',sans-serif;
  font-weight:500;
  font-size:clamp(15px,2vw,20px);
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--bma-blue);
  opacity:0;
  transform:translateX(-8px);
  white-space:nowrap;
}
.bma-stage.is-hero .bma-rest{ display:none; }

.bma-rule{
  height:2px; width:0;
  background:var(--bma-blue);
  margin-top:6px;
}
.bma-stage.is-hero .bma-rule{ display:none; }

.bma-hero-rule{
  position:absolute;
  top:calc(50% + 78px); left:50%;
  transform:translateX(-50%);
  height:2px; width:0;
  background:var(--bma-blue);
}
.bma-stage:not(.is-hero) .bma-hero-rule{ display:none; }
