/* ============================================================
   LEGAL PAGES — Shared Stylesheet v1
   White background. Black text. Clean, readable, no distractions.
   ============================================================ */

/* Force white page background */
body { background: #fff; }

/* Header always dark on legal pages */
.site-header { background: rgba(0,0,0,0.97) !important; }

/* ---- TITLE BANNER ---- */
.legal-title-band {
  background: #f7f7f7;
  border-bottom: 1px solid #e0e0e0;
  padding: 160px clamp(20px,4vw,40px) 60px;
  text-align: left;
}
.legal-title-band-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-page-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
  display: block;
}
.legal-page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px,4vw,44px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.1;
  margin: 0;
}

/* ---- CONTENT AREA ---- */
.legal-content {
  background: #fff;
  padding: clamp(48px,6vw,80px) clamp(20px,4vw,40px) clamp(64px,8vw,100px);
}
.legal-content-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* ---- TYPOGRAPHY ---- */
.legal-content h1,
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(14px,1.4vw,17px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  margin: 40px 0 14px;
  padding-top: 8px;
  border-top: 1px solid #e0e0e0;
}
.legal-content h1:first-child,
.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-family: var(--font-body);
  font-size: clamp(13px,1.3vw,15px);
  font-weight: 700;
  color: #222;
  margin: 28px 0 10px;
  text-transform: none;
  letter-spacing: 0;
}
.legal-content p {
  font-family: var(--font-body);
  font-size: clamp(14px,1.3vw,16px);
  font-weight: 300;
  line-height: 1.78;
  color: #333;
  margin-bottom: 16px;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-family: var(--font-body);
  font-size: clamp(14px,1.3vw,16px);
  font-weight: 300;
  line-height: 1.72;
  color: #333;
  margin-bottom: 6px;
  padding-left: 4px;
}
.legal-content strong {
  font-weight: 600;
  color: #111;
}
.legal-content em {
  font-style: italic;
}
.legal-content a {
  color: #111;
  text-decoration: underline;
}
.legal-content a:hover { color: #b8922e; }

/* Address / contact block */
.legal-contact {
  font-family: var(--font-body);
  font-size: clamp(13px,1.2vw,15px);
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  background: #f7f7f7;
  border-left: 3px solid #ddd;
  padding: 16px 20px;
  margin: 20px 0;
}

/* Numbered items in participation/club28 */
.legal-numbered {
  counter-reset: legal-item;
  list-style: none;
  padding-left: 0;
}
.legal-numbered li {
  counter-increment: legal-item;
  padding-left: 36px;
  position: relative;
  margin-bottom: 20px;
}
.legal-numbered li::before {
  content: counter(legal-item) ".";
  position: absolute;
  left: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  color: #888;
  top: 3px;
}

/* Footer override for white pages */
.site-footer { background: #0a0a0a; }
