/* ===== BRIDGE & DEEDS — Legal Pages ===== */

.legal-hero {
  background: var(--navyDeep);
  padding: 120px 0 60px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--sandLight);
  line-height: 1.2;
  margin: 0 0 12px;
}

.legal-hero__title span {
  color: var(--gold);
}

.legal-hero__meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--sandMuted);
  font-weight: 300;
}

/* ===== Content ===== */

.legal-body {
  background: var(--navyDeep);
  padding: 64px 0 96px;
}

.legal-doc {
  max-width: 780px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.legal-section__num {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(201,169,110,0.5);
  margin-right: 8px;
}

.legal-doc p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.8;
  margin: 0 0 14px;
}

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

.legal-doc ul, .legal-doc ol {
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-doc li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-doc strong {
  color: var(--sandLight);
  font-weight: 500;
}

.legal-doc a,
.legal-doc a:link,
.legal-doc a:visited {
  color: var(--gold);
  text-decoration: none !important;
  border-bottom: none !important;
  transition: color 0.2s;
}

.legal-doc a:hover {
  color: #4A90D9;
  text-decoration: none !important;
  border-bottom: none !important;
}

.legal-info-box {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

.legal-info-box p {
  margin: 0 0 6px;
}

.legal-info-box p:last-child {
  margin: 0;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(201,169,110,0.1);
  margin: 40px 0;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .legal-hero {
    padding: 100px 0 48px;
  }
  .legal-body {
    padding: 48px 0 72px;
  }
}
