/* VIVID BOOKS — LEGAL PAGES CSS */
.legal-hero { min-height: 40vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 140px 0 60px; }
.lh-bg { position: absolute; inset: 0; }
.lh-orb { position: absolute; width: 400px; height: 400px; top: -100px; right: 0; background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%); border-radius: 50%; filter: blur(80px); }
.lh-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px), linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%); }
.lh-content { position: relative; z-index: 2; padding: 0 48px; }
.lh-breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }
.lh-breadcrumb a:hover { color: var(--gold); }
.lh-breadcrumb span:last-child { color: var(--gold); }
.lh-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--cream); line-height: 1.1; margin-bottom: 16px; }
.lh-title em { font-style: italic; color: var(--gold); }
.lh-meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-muted); }
.lh-dot { color: var(--border); }

.legal-body { padding: 60px 0 120px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: start; }

/* TOC */
.legal-toc { position: sticky; top: 100px; background: var(--dark-3); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 24px; }
.toc-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-subtle); }
.toc-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.toc-link { font-size: 0.78rem; color: #3A3228; padding: 6px 8px; border-radius: 6px; transition: background 0.2s, color 0.2s; line-height: 1.4; }
.toc-link:hover { background: var(--dark-4); color: var(--text); }
.toc-link.active { color: var(--gold); background: var(--gold-dim); }
.toc-other { padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.toc-other a { font-size: 0.78rem; color: var(--gold); }

/* Content */
.legal-content { max-width: 760px; }
.lc-intro { padding: 28px 32px; background: var(--dark-3); border: 1px solid var(--border-subtle); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; margin-bottom: 48px; }
.lc-intro p { font-size: 0.92rem; color: #3A3228; line-height: 1.8; margin-bottom: 12px; }
.lc-intro p:last-child { margin-bottom: 0; }

.lc-section { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--border-subtle); }
.lc-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.lc-section h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--cream); margin-bottom: 16px; display: flex; align-items: baseline; gap: 12px; }
.ls-num { font-size: 0.85rem; color: var(--gold); font-family: var(--font-body); font-weight: 500; min-width: 28px; }
.lc-section h3 { font-size: 0.95rem; font-weight: 600; color: var(--cream); margin: 24px 0 10px; letter-spacing: 0.02em; }
.lc-section p { font-size: 0.9rem; color: #3A3228; line-height: 1.85; margin-bottom: 14px; }
.lc-section p:last-child { margin-bottom: 0; }
.lc-section ul { list-style: none; margin: 12px 0 16px; display: flex; flex-direction: column; gap: 8px; }
.lc-section ul li { font-size: 0.88rem; color: #3A3228; padding-left: 20px; position: relative; line-height: 1.7; }
.lc-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; top: 3px; }
.lc-section a { color: var(--gold); transition: opacity 0.2s; }
.lc-section a:hover { opacity: 0.8; }
.lc-section strong { color: var(--cream); font-weight: 600; }

.lc-highlight { padding: 20px 24px; background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.04)); border: 1px solid var(--border); border-radius: 12px; margin: 20px 0; font-size: 0.88rem; color: var(--cream); line-height: 1.7; }
.lc-highlight strong { color: var(--gold); }

.lc-contact-box { background: var(--dark-4); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 24px 28px; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.lcb-item { font-size: 0.88rem; color: var(--text-muted); }
.lcb-item strong { color: var(--cream); margin-right: 8px; }
.lcb-item a { color: var(--gold); }

@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .toc-nav { gap: 1px; }
  .lh-content { padding: 0 24px; }
}
@media (max-width: 768px) {
  .legal-toc { grid-template-columns: 1fr; }
  .lc-section h2 { font-size: 1.3rem; }
}
