*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  background: #F5F0E8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  gap: 1.25rem;
}

.logo {
  width: clamp(420px, 60vw, 660px);
}

.about {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(0.55rem, 0.4rem + 0.4vw, 0.7rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.9;
  color: #000000;
  max-width: 480px;
  text-align: center;
  padding: 0 1rem;
}

.contact {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(0.85rem, 0.6rem + 0.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 220ms ease;
}

.contact:hover {
  border-bottom-color: #000000;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-form {
  display: none;
  align-items: stretch;
  gap: 0;
}

.email-form.visible {
  display: flex;
}

.email-form input[type="email"] {
  padding: 0.5rem 0.75rem;
  border: 1px solid #000000;
  border-right: none;
  border-radius: 0;
  background: transparent;
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  outline: none;
  width: 220px;
}

@media (min-width: 768px) {
  .email-form input[type="email"] {
    font-size: clamp(0.5rem, 0.35rem + 0.35vw, 0.65rem);
  }
}

.email-form input[type="email"]::placeholder {
  color: #999999;
}

.email-form button {
  padding: 0.5rem 0.75rem;
  border: 1px solid #000000;
  border-radius: 0;
  background: #000000;
  color: #F5F0E8;
  font-size: clamp(0.6rem, 0.45rem + 0.4vw, 0.85rem);
  cursor: pointer;
}

.email-form button:hover {
  background: #333333;
}

.ig {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 220ms ease;
}

.ig:hover {
  opacity: 0.5;
}
