/* Legal pages (Terms & Conditions, Privacy Policy).
   Shared layout: narrow reading column, serif headlines, plenty of
   breathing room. Visually quieter than the marketing pages so the
   text leads, not the design. */

.legal {
  padding: 80px 0 120px;
  background: var(--cream);
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
  margin-bottom: 14px;
}

.legal h1 {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
}

.legal h1 em {
  font-style: italic;
}

.legal .legal-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

.legal .legal-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  padding: 22px 26px;
  background: var(--cream-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 6px 6px 0;
  margin-bottom: 48px;
}

.legal h2 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}

.legal p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}

.legal p strong {
  font-weight: 600;
}

.legal ul.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.legal ul.bullet-list li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  padding: 8px 0 8px 24px;
  position: relative;
}

.legal ul.bullet-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-weight: 600;
}

.legal ul.bullet-list li strong {
  font-weight: 600;
  color: var(--ink);
}

.legal ul.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal ul.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 17px;
}

.legal ul.contact-list .contact-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 60px;
}

.legal ul.contact-list a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  font-weight: 500;
}

.legal ul.contact-list a:hover {
  text-decoration-color: var(--green);
}

@media (max-width: 720px) {
  .legal {
    padding: 56px 0 80px;
  }
  .legal h1 {
    font-size: 44px;
  }
  .legal h2 {
    font-size: 22px;
    margin-top: 36px;
  }
  .legal p,
  .legal ul.bullet-list li,
  .legal ul.contact-list li {
    font-size: 16px;
  }
  .legal .legal-lead {
    font-size: 17px;
    padding: 18px 20px;
  }
}
