@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

@font-face {
  font-family: "UnifrakturCook";
  src: url("/fonts/unifrakturcook-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

.wordmark,
.page-hero h1 {
  font-family: "UnifrakturCook", serif;
  font-style: normal;
  font-weight: 700;
}

.page-hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .9;
}

.home-minimal {
  min-height: 100vh;
  background: #fefbf5;
  color: #181419;
  overflow: hidden;
}

.minimal-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  padding: clamp(1rem, 3vw, 2rem);
}

.minimal-header .language-nav {
  display: flex;
  gap: .15rem;
}

.minimal-header .language-nav a {
  color: #181419;
  background: transparent;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  opacity: .5;
}

.minimal-header .language-nav a:hover,
.minimal-header .language-nav a[aria-current="page"] {
  background: transparent;
  opacity: 1;
}

.minimal-home {
  min-height: 100vh;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 7vw, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.minimal-home-title {
  color: #181419;
  text-decoration: none;
}

.minimal-home-title h1 {
  margin: 0;
  font-family: "UnifrakturCook", serif;
  font-size: clamp(7rem, 25vw, 24rem);
  font-weight: 700;
  line-height: .68;
  letter-spacing: -.045em;
  transition: transform .45s ease;
}

.minimal-home-title:hover h1,
.minimal-home-title:focus-visible h1 {
  transform: scale(1.015);
}

.minimal-home-title:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 1rem;
}

.minimal-home-definition {
  max-width: 38rem;
  margin: clamp(2.2rem, 6vw, 4.5rem) 0 0;
  color: #5c555c;
  font-size: clamp(.82rem, 1.25vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .015em;
}

.minimal-home-definition a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.minimal-home-definition a:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .minimal-header {
    left: 0;
    right: 0;
  }

  .minimal-header .language-nav {
    justify-content: center;
  }

  .minimal-home-title h1 {
    font-size: clamp(6.5rem, 31vw, 10rem);
    line-height: .78;
  }
}
