@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #090909;
  --blue-ink: #1458b8;
  --line: #deded9;
  --paper: #ffffff;
  --watermark: #eeeeeb;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .04em;
  overflow-x: hidden;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
}

.watermark {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
}

.watermark img {
  width: min(52vw, 700px);
  height: auto;
  opacity: .055;
  filter: grayscale(1);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  z-index: 10;
  mix-blend-mode: multiply;
}

.header-link,
.wordmark {
  font-weight: 600;
  font-size: 10px;
}

.menu-trigger {
  justify-self: start;
}

.wordmark {
  font-weight: 800;
  letter-spacing: .18em;
}

.header > a:last-child {
  justify-self: end;
}

.header > a:last-child span {
  opacity: .45;
}

.menu-panel {
  position: fixed;
  top: 64px;
  left: 28px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 17px 20px;
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  transform: translateY(-150%);
  transition: transform .25s ease;
}

.menu-panel.open {
  transform: translateY(0);
}

.menu-panel a {
  font-weight: 600;
  font-size: 10px;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 64px 28px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coming-soon {
  color: var(--blue-ink);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: clamp(92px, 14vw, 205px);
  font-weight: 600;
  line-height: .62;
  letter-spacing: -.075em;
  transform: rotate(-5deg) translateY(-8%);
  text-align: left;
  text-shadow: .5px .5px 0 currentColor;
  user-select: none;
}

.coming-soon span {
  display: block;
}

.coming-soon span:first-child {
  transform: translateX(-18px);
}

.coming-soon span:last-child {
  transform: translateX(48px) rotate(1deg);
}

.categories {
  position: absolute;
  bottom: 49px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: center;
  gap: 34px;
  font-weight: 600;
}

.bottom {
  position: relative;
  z-index: 1;
  min-height: 35vh;
  border-top: 1px solid var(--line);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 70px 28px;
}

.bottom p {
  margin: 2px 0;
  font-size: clamp(22px, 4vw, 52px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.055em;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 18px 28px 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 600;
}

footer span {
  margin-left: auto;
  opacity: .45;
}

@media (max-width: 700px) {
  .header {
    padding: 0 16px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .watermark img {
    width: 72vw;
  }

  .coming-soon {
    font-size: clamp(82px, 22vw, 145px);
  }

  .categories {
    left: 16px;
    right: 16px;
    gap: 15px;
    font-size: 9px;
    flex-wrap: wrap;
  }

  .bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  footer span {
    width: 100%;
    margin-left: 0;
  }
}
