@font-face {
  font-family: "Suisse Intl";
  src: url("/fonts/SuisseIntl-Regular.otf") format("opentype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
  font-family: "Suisse Intl", Arial, sans-serif;
}

button {
  font: inherit;
}

.page {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  line-height: 1;
}

.rotator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100dvh;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}

.row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
}

.brand {
  margin: 0;
  font: inherit;
  font-weight: 400;
}

.contact {
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

.contact-label {
  white-space: nowrap;
}

.intro,
.contact-label.is-entering {
  display: inline-block;
  opacity: 0;
  transform: translateX(-16px);
  animation: intro-in 0.3s ease-out var(--intro-delay, 0s) forwards;
}

.contact-label.is-exiting {
  display: inline-block;
  opacity: 1;
  transform: translateX(0);
  animation: contact-out 0.06s ease-out forwards;
}

@keyframes intro-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes intro-out {
  to {
    opacity: 0;
    transform: translateX(16px);
  }
}

@keyframes contact-out {
  to {
    opacity: 0;
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro,
  .contact-label.is-entering,
  .contact-label.is-exiting {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
