/* ===================================================
   Legal pages (Terms & Conditions, etc.)
=================================================== */
.legal-hero {
  padding: calc(var(--nav-height) + 4rem) clamp(1.5rem, 6vw, 5rem) 3rem;
  background: linear-gradient(180deg, #0f1e15 0%, var(--color-black) 100%);
  border-bottom: 1px solid rgba(247, 246, 242, 0.1);
}

.legal-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-forest-light);
  margin-bottom: 1rem;
}

.legal-hero__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.legal-hero__meta {
  font-size: 0.85rem;
  color: var(--color-white-faint);
}

.legal-body {
  background: var(--color-black);
  padding: 3.5rem clamp(1.5rem, 6vw, 5rem) 6rem;
}

.legal-body__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.legal-section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(247, 246, 242, 0.1);
}

.legal-section p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-white-muted);
  margin-bottom: 1rem;
}

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

.legal-section strong {
  color: var(--color-white);
  font-weight: 600;
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1rem 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-white-muted);
}

.legal-section ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--color-forest-light);
}

.legal-section ul li strong {
  color: var(--color-white);
  font-weight: 600;
}

.legal-section--callout {
  background: rgba(247, 246, 242, 0.04);
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: 4px;
  padding: 1.75rem;
}

@media (max-width: 640px) {
  .legal-hero {
    padding-top: calc(var(--nav-height) + 2.5rem);
  }
}
