:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f5f5f5;
  background: #080808;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #080808;
}

.contact-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--mr-navbar-height));
  padding: clamp(48px, 8vw, 96px) 20px;
}

.contact-card {
  width: min(100%, 680px);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  background: #101010;
  border: 1px solid #2d2d2d;
}

.contact-eyebrow {
  margin: 0 0 14px;
  color: #8d8d8d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-card h1 {
  margin: 0;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.contact-intro {
  max-width: 540px;
  margin: 24px auto 0;
  color: #b5b5b5;
  font-size: 16px;
  line-height: 1.7;
}

.contact-email {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-button {
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 150px;
  min-height: 46px;
  margin: 30px auto 0;
  padding: 12px 24px;
  color: #090909;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: #fff;
  border-color: #fff;
  outline: 2px solid #777;
  outline-offset: 3px;
}

.contact-fallback {
  margin: 32px 0 8px;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

.contact-copy {
  margin: 0;
  color: #d6d6d6;
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
  user-select: all;
}

@media (max-width: 480px) {
  .contact-main {
    align-items: start;
    padding: 32px 14px;
  }

  .contact-card {
    padding: 32px 20px;
  }
}
