@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/sora-300-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Serif";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("fonts/noto-serif-100-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --paper: #f3efe5;
  --title: #3d3731;
  --muted: #6d675e;
  --line: rgba(61, 55, 49, 0.2);
  --focus: #4f5d67;
  --title-size: 7rem;
  --domain-dot-shift: 0.05em;
  --domain-tld-gap: -0.025em;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100svh;
  margin: 0;
  background: var(--paper);
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 0.22rem;
}

main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 5.5rem 3rem 3rem;
}

section {
  width: min(100%, 60rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#tagline {
  margin: 0 0 2.3rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
  text-transform: uppercase;
}

#domain-name {
  margin: 0;
  color: var(--title);
  font-family: "Noto Serif", Georgia, serif;
  font-size: var(--title-size);
  font-style: italic;
  font-weight: 100;
  line-height: 0.88;
  white-space: nowrap;
}

.domain-dot,
.domain-tld {
  display: inline-block;
}

.domain-dot {
  transform: translateX(var(--domain-dot-shift));
}

.domain-tld {
  margin-left: var(--domain-tld-gap);
}

.muted-copy {
  color: var(--muted);
  font-size: 1.0rem;
  line-height: 1.8;
}

#registered {
  margin-top: 2.4rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#registered:hover,
#contact a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(109, 103, 94, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.inquiry-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-top: 1.8rem;
}

#inquiry,
#contact {
  margin: 0;
}

@media (max-width: 64rem) {
  :root {
    --title-size: 4.6rem;
  }

  main {
    padding: 5.5rem 1.4rem 2rem;
  }
}

@media (max-width: 34rem) {
  :root {
    --title-size: clamp(1.95rem, 13.5vw, 3rem);
  }

  main {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .muted-copy {
    font-size: clamp(0.8rem, 4.4vw, 1.1rem);
  }

  #tagline {
    font-size: clamp(0.68rem, 3.6vw, 0.8rem);
  }
}
