@font-face {
  font-family: Rubik;
  src: url(/fiest/fonts/rubik-400.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: oklch(0.98 0.005 71.9);
  color: oklch(0.21 0.01 67.39);
  font-family: Rubik, sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid #8a6510;
  outline-offset: 5px;
}
.skip {
  position: absolute;
  left: 24px;
  top: -80px;
  background: #ffcc72;
  padding: 12px;
  z-index: 2;
}
.skip:focus {
  top: 8px;
}
header,
footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px clamp(24px, 5vw, 80px);
}
header {
  justify-content: space-between;
  border-bottom: 1px solid #dedad1;
}
.wordmark {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.04em;
  text-decoration: none;
}
footer {
  border-top: 1px solid #dedad1;
  font-size: 14px;
}
footer span {
  margin-left: auto;
}
.information {
  max-width: 800px;
  margin: 64px auto 96px;
  padding: 0 24px;
}
.eyebrow {
  font-size: 14px;
  font-weight: 600;
}
h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 24px 0;
}
h2 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 48px 0 16px;
}
.intro {
  font-size: 18px;
  max-width: 36em;
  color: #5b584f;
}
nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.not-found {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1440px;
  min-height: 70vh;
  margin: auto;
  padding: 64px clamp(24px, 5vw, 80px);
}
.not-found-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
}
.not-found-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.not-found-photo span {
  position: absolute;
  bottom: 16px;
  left: 24px;
  color: #fff;
  font-size: clamp(96px, 14vw, 192px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.07em;
  text-shadow: 0 2px 12px #0008;
}
.actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.primary {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  border: 2px solid #28271f;
  border-radius: 9999px;
  background: oklch(0.86 0.13 74);
  font-weight: 600;
  text-decoration: none;
}
.help {
  margin-top: 32px;
  font-size: 14px;
}
@media (max-width: 700px) {
  .not-found {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
  }
  .not-found-photo {
    aspect-ratio: 4/3;
    max-height: 320px;
  }
  .information {
    margin-top: 40px;
  }
  footer span {
    margin-left: 0;
  }
}
