.brand {
  gap: 10px;
}

.site-header {
  color: var(--white);
}

.site-header nav a {
  color: var(--white);
}

.brand-logo {
  border-radius: 6px;
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: #9cb5c4;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.brand-description {
  border-left: 2px solid var(--lime);
  color: #d5e0e5;
  font-size: 13px;
  line-height: 1.65;
  margin: -12px 0 31px;
  max-width: 590px;
  padding-left: 15px;
}

footer .brand-copy small {
  color: #8ba2b2;
}

.brand-mark {
  align-items: center;
  background: var(--lime);
  border-radius: 3px;
  color: var(--ink);
  display: inline-flex;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  height: 28px;
  justify-content: center;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: none;
  width: 28px;
}

.contact-details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  font-style: normal;
  gap: 0;
  margin-top: 31px;
}

.contact-details div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: 92px 1fr;
  padding: 14px 0;
}

.contact-details div:last-child {
  border-bottom: 0;
}

.contact-details span {
  color: #7894a6;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-transform: none;
}

.contact-details a {
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--lime);
}

@media (max-width: 560px) {
  .brand {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .brand-logo {
    flex-basis: 30px;
    height: 30px;
    width: 30px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .contact-details div {
    grid-template-columns: 78px 1fr;
  }
}
