/* =============================================================
   Section: 404 / Not Found
   Maps to: 404.php
   ============================================================= */

.not-found {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - var(--header-h, 100px));
}

.not-found__panel {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.not-found__inner {
  display: grid;
  gap: var(--s-5);
  justify-items: flex-start;
  max-width: 720px;
}

.not-found__eyebrow {
  color: var(--safety);
}

.not-found__code {
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.85;
  color: var(--bone);
  -webkit-text-stroke: 2px var(--bone);
  color: transparent;
}

.not-found__lede {
  color: var(--muted-dark);
  max-width: 56ch;
}

.not-found__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding: 0;
  list-style: none;
}

.not-found__links li {
  list-style: none;
}

.not-found__phone {
  margin-top: var(--s-5);
  color: var(--muted-dark);
}

.not-found__phone a {
  color: var(--safety);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.not-found__phone a:hover {
  opacity: 0.8;
}
