/* Brand title next to logo */
.brand--title{
  display:flex;
  align-items:center;
  gap:14px;
}

/* Large, authoritative brand title */
.brand__title{
  font-weight:900;
  letter-spacing:-0.6px;
  font-size:40px;              /* ~2x previous size */
  line-height:1;
  color:#071427;               /* deep navy */
}

/* Slightly tighten header height so it doesn't feel bulky */
.header__inner{
  padding:16px 0;
}

/* Responsive scaling */
@media (max-width: 980px){
  .brand__title{
    font-size:32px;
  }
}

@media (max-width: 420px){
  .brand__title{
    font-size:26px;
  }
}
