/* ============================================================
   LEGAL TEMPLATE
   Layout styles for standalone legal pages (privacy, terms, etc.).
   Shared typography (sec-h2, body-text), breadcrumb, nav, and
   footer are in main.css — not repeated here.
   ============================================================ */

/* ============================================================
   PAGE WRAP — narrow centred column
   ============================================================ */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 4.5rem 3.5rem 6rem;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.legal-cat {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-cat::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--accent);
  display: block;
}

.legal-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.07;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.legal-h1 em { font-style: italic; color: var(--accent); }

.legal-date {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  margin-bottom: 3.5rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.legal-section {
  margin-bottom: 3rem;
}

.legal-sec-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  padding-top: 0.5rem;
  border-top: 0.5px solid var(--surface-alt);
}

/* body-text is in main.css */

/* ============================================================
   ITEM LIST — em-dash style
   ============================================================ */
.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.legal-list li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  display: flex;
  gap: 0.8rem;
}
.legal-list li::before {
  content: '—';
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT BLOCK
   ============================================================ */
.legal-contact {
  background: var(--surface);
  padding: 1.6rem 1.8rem;
  margin-top: 1rem;
  border-left: 2px solid var(--accent);
}
.legal-contact p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-contact a {
  color: var(--accent);
  text-decoration: none;
}
.legal-contact a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE — legal template (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .legal-wrap { padding: 3rem 1.5rem 4rem; }
  .legal-h1 { font-size: 34px; }
}
