/* ============================================================
   NARRATO — legal.css
   Styles for Privacy Policy and Terms of Service pages
   ============================================================ */

.legal-page {
  padding-top: 120px;
  padding-bottom: 100px;
  background: white;
  min-height: 100vh;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--peach-light);
}

.legal-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1;
}

.legal-meta {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* Intro callout box */
.legal-intro {
  background: var(--peach-light);
  border: 1px solid var(--peach);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-intro p {
  font-size: 16px;
  color: var(--brown);
  line-height: 1.75;
  margin: 0;
}
.legal-intro p + p { margin-top: 12px; }

/* Body typography */
.legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--peach-light);
}

.legal-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-body p {
  font-size: 16px;
  color: #3a2500;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.legal-body ul li {
  font-size: 15px;
  color: #3a2500;
  line-height: 1.75;
  padding: 6px 0 6px 24px;
  position: relative;
}

.legal-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.legal-body a {
  color: var(--orange-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.legal-body a:hover { color: var(--orange); }

/* Contact box */
.legal-contact {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 12px;
}
.legal-contact p {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--dark);
}
.legal-contact p:last-child { margin-bottom: 0; }

/* Responsive */
@media (max-width: 600px) {
  .legal-page { padding-top: 100px; padding-bottom: 60px; }
  .legal-header h1 { font-size: 32px; }
  .legal-body h2 { font-size: 20px; }
}
