/* SHHEK — Legal & Error Pages Styles (legal.css) */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 1.5rem 8rem;
}
.legal-header {
  margin-bottom: 4rem;
}
.legal-title {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.legal-date {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.legal-content {
  color: var(--charcoal);
  line-height: 1.7;
  font-size: var(--fs-base);
}
.legal-content h2 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--espresso);
  margin: 3rem 0 1rem;
}
.legal-content h3 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  margin: 2rem 0 1rem;
}
.legal-content p {
  margin-bottom: 1.5rem;
}
.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}
.legal-content li {
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: var(--espresso);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 404 Error Page */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-content {
  max-width: 500px;
}
.error-code {
  font-family: var(--ff-head);
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  color: var(--warm-beige);
  margin-bottom: 1rem;
}
.error-title {
  font-family: var(--ff-head);
  font-size: 2rem;
  color: var(--espresso);
  margin-bottom: 1rem;
}
.error-message {
  font-size: var(--fs-base);
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}
