:root {
  color-scheme: light;
  --background: #fff;
  --foreground: #090909;
  --border: #111;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.coming-soon {
  width: min(100%, 74rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 8.5rem) 2rem clamp(2.5rem, 7vh, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.name,
.domain {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: clamp(3.8rem, 10vh, 7.5rem) 0 0;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.intro {
  margin: clamp(2.5rem, 6vh, 4.25rem) 0 0;
  font-size: clamp(1.05rem, 1.65vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.contact-links {
  width: min(100%, 33.5rem);
  margin-top: clamp(2.8rem, 6vh, 4.5rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-button {
  min-height: 4.2rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  color: inherit;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--foreground);
  color: var(--background);
}

.contact-button:focus-visible {
  outline: 3px solid var(--background);
  box-shadow: 0 0 0 5px var(--foreground);
}

.icon {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
}

.domain {
  margin-top: clamp(3.8rem, 8vh, 6rem);
  font-size: clamp(0.95rem, 1.4vw, 1.35rem);
  letter-spacing: 0.22em;
  text-transform: lowercase;
}

@media (max-width: 42rem) {
  .coming-soon {
    padding-inline: 1.25rem;
  }

  .name {
    font-size: 0.95rem;
    letter-spacing: 0.25em;
  }

  h1 {
    margin-top: 3.75rem;
    font-size: clamp(2.5rem, 12vw, 4rem);
    letter-spacing: 0.04em;
  }

  .intro br {
    display: none;
  }

  .contact-links {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .domain {
    letter-spacing: 0.16em;
  }
}

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