:root {
  --gesti-blue: #129bd3;
  --gesti-blue-dark: #087aa9;
  --gesti-ink: #202323;
  --gesti-white: #ffffff;
}

body {
  background: var(--gesti-white);
  color: var(--gesti-ink);
  font-family: var(--bs-font-sans-serif);
}

.identity {
  width: min(88vw, 35rem);
  padding: 3rem 1rem;
}

.identity__logo {
  display: block;
  width: min(100%, 35rem);
  height: auto;
  margin-inline: auto;
}

.identity__tagline {
  margin: 1.75rem 0 1.5rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.identity__contact {
  min-width: 8.5rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gesti-blue);
  border-radius: 0.25rem;
  background: var(--gesti-blue);
  color: var(--gesti-white);
  font-weight: 600;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.identity__contact:hover {
  border-color: var(--gesti-blue-dark);
  background: var(--gesti-blue-dark);
  color: var(--gesti-white);
  transform: translateY(-1px);
}

.identity__contact:focus-visible {
  outline: 3px solid rgb(18 155 211 / 30%);
  outline-offset: 3px;
}

@media (max-width: 35.98rem) {
  .identity {
    width: min(92vw, 27rem);
    padding-block: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .identity__contact {
    transition: none;
  }
}
