/* ═══════════════════════════════════════════════════════════════
   SAPERE PLUS · Legal Page · legal.css
   Include după style.css și dark-mode.css
   ═══════════════════════════════════════════════════════════════ */

.legal-page {
  background: var(--parchment);
  color: var(--ink);
  min-height: 100vh;
  padding: 6rem 1.5rem 5rem;
}

.legal-hero {
  max-width: 820px;
  margin: 0 auto 4rem;
  text-align: center;
}

.legal-hero-inner {
  position: relative;
  padding-bottom: 1.5rem;
}

.legal-hero-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--sienna);
  opacity: 0.5;
}

.legal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.legal-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: var(--graphite);
  max-width: 600px;
  margin: 0 auto;
}

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

.legal-section {
  margin-bottom: 5rem;
}

.legal-section:last-of-type {
  margin-bottom: 3rem;
}

.legal-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.legal-section-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--sienna);
}

.legal-content {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink);
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sienna);
  margin: 2.5rem 0 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.5rem 1.8rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--sienna);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--sienna-hi);
}

.legal-contact {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--graphite);
}

.legal-contact a {
  color: var(--sienna);
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
}

.legal-contact a:hover {
  text-decoration: underline;
}

/* Dark mode overrides */
[data-theme="dark"] .legal-page {
  background: var(--parchment);
}

[data-theme="dark"] .legal-title {
  color: var(--ink);
}

[data-theme="dark"] .legal-subtitle {
  color: var(--graphite);
}

[data-theme="dark"] .legal-section-title {
  color: var(--ink);
  border-bottom-color: var(--void-border);
}

[data-theme="dark"] .legal-section-title::after {
  background: var(--amber);
}

[data-theme="dark"] .legal-content {
  color: var(--graphite);
}

[data-theme="dark"] .legal-content h3 {
  color: var(--amber);
}

[data-theme="dark"] .legal-content a {
  color: var(--amber-hi);
}

[data-theme="dark"] .legal-contact {
  border-top-color: var(--void-border);
  color: var(--slate);
}

[data-theme="dark"] .legal-contact a {
  color: var(--amber-hi);
}

/* Responsive */
@media (max-width: 640px) {
  .legal-page {
    padding: 4.5rem 1.25rem 3rem;
  }

  .legal-section-title {
    font-size: 1.8rem;
  }

  .legal-content {
    font-size: 1rem;
  }

  .legal-content ul,
  .legal-content ol {
    margin-left: 1.25rem;
  }
}