/* Logo sizing + subtle luxury glow */
.header-inner{
  grid-template-columns: 160px 1fr auto;
}

.brand{
  width: 132px;
  height: 132px;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 2px;
  position: relative;
  z-index: 3;
}

.brand::before{
  content: '';
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,213,167,.22) 0 4%, rgba(224,155,104,.10) 12%, transparent 34%),
    radial-gradient(circle at center, rgba(200,154,121,.08), transparent 66%);
  filter: blur(8px);
  opacity: .9;
  pointer-events: none;
  z-index: -1;
}

.brand::after{
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  top: 12px;
  right: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,230,190,.34) 0%, rgba(226,168,118,.16) 26%, transparent 70%);
  filter: blur(7px);
  opacity: .75;
  pointer-events: none;
}

.brand img{
  width: 132px;
  height: 132px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter:
    brightness(1.06)
    contrast(1.04)
    drop-shadow(0 8px 22px rgba(0,0,0,.34))
    drop-shadow(0 0 10px rgba(207,150,105,.12));
}

@media (max-width: 1050px){
  .header-inner{
    grid-template-columns: 132px 1fr auto;
    gap: 20px;
  }
  .brand,.brand img{
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 899px){
  .header-inner{
    grid-template-columns: 96px 1fr auto;
  }
  .brand{
    width: 88px;
    height: 88px;
    margin-top: 2px;
  }
  .brand img{
    width: 88px;
    height: 88px;
  }
  .brand::before{
    inset: 10px;
  }
  .brand::after{
    width: 30px;
    height: 30px;
    top: 8px;
    right: 4px;
  }
}
