.brand-lockup {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: block;
  border: 1px solid rgba(199, 144, 34, 0.5);
  border-radius: 20px;
  background: #000;
  object-fit: cover;
  box-shadow:
    0 10px 26px rgba(27, 20, 13, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.72);
}

.brand-copy {
  min-width: 0;
}

.brand-purpose {
  display: block;
  margin-bottom: 7px;
  color: #9a6a18;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
}

@media (min-width: 901px) {
  .brand-copy {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: max-content minmax(310px, 1fr);
    gap: clamp(54px, 8vw, 132px);
    align-items: center;
  }

  .brand-meta {
    min-width: 0;
    justify-self: start;
    border-left: 2px solid rgba(199, 144, 34, .32);
    padding: 5px 0 5px 24px;
  }

  .brand-meta .tagline span {
    margin-left: 0;
    margin-right: 8px;
  }
}

@media (max-width: 560px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
    box-shadow:
      0 5px 14px rgba(27, 20, 13, 0.16),
      0 0 0 2px rgba(255, 255, 255, 0.76);
  }

  .brand-copy {
    display: block;
    line-height: 1;
  }

  .brand-identity {
    white-space: nowrap;
  }

  .brand-purpose {
    display: none;
  }

}
