/* Legal Pages Styles */

.legal-hero {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.legal-hero__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.legal-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}
.legal-hero__title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
@media (min-width: 768px) {
  .legal-hero__title { font-size: 3.5rem; }
}
.legal-hero__subtitle {
  font-size: 1.25rem;
  color: #B3C1D6;
}

.legal-content {
  padding: 6rem 0;
  background: var(--paper);
}
.legal-content__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
}
@media (max-width: 768px) {
  .legal-content__inner { padding: 2rem 1.5rem; }
}
.legal-intro p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.legal-intro strong { color: var(--navy); }

.legal-section {
  margin-top: 4rem;
}
.legal-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brass);
}
.legal-subheading {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-section__body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
}

.legal-link {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 4px;
}
.legal-link:hover {
  color: var(--brass);
}

.legal-copyright {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}