/* ============================================
   Legal Pages — Shared Styles
   ============================================ */

.page-hero {
  background: var(--dark);
  padding: 10rem 0 5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.legal-content {
  background: var(--cream);
  padding: 5rem 0 8rem;
}

.legal-body {
  max-width: 750px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.legal-section p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  font-weight: 500;
  color: var(--text);
}

.legal-section ul {
  list-style: none;
  margin: 0.75rem 0 1rem 0;
  padding: 0;
}

.legal-section ul li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.legal-section a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.legal-section a:hover {
  opacity: 0.7;
}

.legal-back {
  max-width: 750px;
  margin: 3rem auto 0;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.back-link:hover {
  opacity: 0.7;
}
