/* ============================================================
   SMART WEB DESIGN — Contact & 404 Pages
   ============================================================ */

/* Inherits .contact-layout from about.css */

/* ---- 404 Page ---- */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--section-pad-y);
}

.not-found__inner { max-width: 560px; }

.not-found__code {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 800;
  line-height: 0.9;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-6);
}

.not-found__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.not-found__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-10);
}

.not-found__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
