/* ===== LEGAL PAGES — privacy-policy, terms, disclaimer ===== */

.legal-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #141400 100%);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 120px 0 60px;
  text-align: center;
}
.legal-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  border: 1px solid rgba(212,175,55,0.35);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.legal-hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.legal-hero-meta span { color: #d4af37; }

/* Body */
.legal-body {
  background: #0d0d0d;
  padding: 70px 0 100px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
}

/* Sidebar TOC */
.legal-toc {
  background: #141414;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 90px;
}
.legal-toc h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0 0 16px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc ul li a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  transition: all 0.2s;
  line-height: 1.4;
}
.legal-toc ul li a:hover {
  color: #d4af37;
  background: rgba(212,175,55,0.07);
}

/* Content */
.legal-content { min-width: 0; }

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.legal-section-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 8px;
}
.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.legal-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: rgba(255,255,255,0.88); }
.legal-section a { color: #d4af37; text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  padding: 10px 14px 10px 36px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 3px solid rgba(212,175,55,0.3);
  position: relative;
  line-height: 1.6;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
}
.legal-list li strong { color: rgba(255,255,255,0.85); }

.legal-highlight {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.legal-highlight strong { color: #d4af37; }

.legal-contact-box {
  background: linear-gradient(135deg, #0a0a00, #141400);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 8px;
}
.legal-contact-box p {
  margin-bottom: 8px !important;
  font-size: 14px;
}
.legal-contact-box .lcb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 12px !important;
}
