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

html,
body {
  width: 100%;
  min-height: 100%;
  background: #ffffff;
  color: #000000;
}

body {
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page {
  width: 100vw;
  height: 100svh;
  position: relative;
  background: #ffffff;
  opacity: 0;
  animation: fadeIn 900ms ease forwards;
}

.socials {
  position: absolute;
  top: 24.5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(38px, 5vw, 76px);
  font: 400 clamp(11px, 1.1vw, 15px)/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  white-space: nowrap;
}

.socials a {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transition: opacity 180ms ease;
}

.socials a:hover {
  opacity: 0.45;
}

.wordmark {
  position: absolute;
  top: 43.5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0px, 0.2vw, 4px);
  font-family: "Bodoni Moda", "Bodoni 72", "Bodoni MT", Didot, serif;
  font-size: clamp(82px, 16.2vw, 236px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
  font-kerning: none;
  font-feature-settings: "kern" 0, "liga" 0;
}

.line {
  display: flex;
  align-items: baseline;
}

.line span {
  display: block;
  flex: 0 0 auto;
}

/* Optical spacing for the wordmark */
.l { margin-right: 0.052em; }
.a { margin-right: 0.038em; }
.y { margin-right: 0.044em; }
.n { margin-right: 0.052em; }

.b { margin-right: 0.048em; }
.o { margin-right: 0.048em; }
.d { margin-right: 0.047em; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .socials {
    top: 25vh;
    gap: 34px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .wordmark {
    top: 42vh;
    font-size: clamp(70px, 23vw, 118px);
  }

  .l { margin-right: 0.046em; }
  .a { margin-right: 0.034em; }
  .y { margin-right: 0.039em; }
  .n { margin-right: 0.046em; }

  .b { margin-right: 0.043em; }
  .o { margin-right: 0.043em; }
  .d { margin-right: 0.042em; }
}
