/* Aurevia header wordmark baseline alignment
   Keep the A anchor geometry untouched; align the UREVIA wordmark to the A's visual base. */

/* Large desktop — approved alignment, intentionally unchanged. */
.brand-lockup{
  --brand-baseline-inset:13px;
}

.brand-lockup .brand-word{
  align-self:end !important;
  margin-bottom:var(--brand-baseline-inset) !important;
  transform:none !important;
}

/* Laptop / compact desktop header — lift the wordmark slightly so its visual
   baseline meets the bottom of the A. */
@media (min-width:769px) and (max-width:900px){
  .brand-lockup{
    --brand-baseline-inset:16px;
  }
}

/* Phone / tablet — same baseline relationship at the smaller A size. */
@media (max-width:768px){
  .brand-lockup{
    --brand-baseline-inset:11px;
  }
}

@media (max-width:359px){
  .brand-lockup{
    --brand-baseline-inset:10px;
  }
}
