/*
 * ═══════════════════════════════════════════════════════════════
 * SAINT CLAIR CAPITAL — PRIVACY POLICY PAGE
 * ═══════════════════════════════════════════════════════════════
 *
 * Standalone subpage styles for the privacy policy.
 * Overrides local.css body overflow:hidden for scrollable content.
 *
 * ═══════════════════════════════════════════════════════════════
 */

/* Allow scroll on this page */
body {
  overflow: auto;
  height: auto;
}

/* ── Layout ── */

.privacy {
  max-width: 680px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.privacy__header {
  margin-bottom: 3rem;
}

.privacy__label {
  font-family: var(--sc-font-primary, 'Jost', sans-serif);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sc-gold, #CAAA63);
  margin-bottom: 0.8rem;
}

.privacy__title {
  font-family: var(--sc-font-primary, 'Jost', sans-serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sc-cream, #FAF9F5);
  margin-bottom: 0.6rem;
}

.privacy__date {
  font-family: var(--sc-font-primary, 'Jost', sans-serif);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--sc-lavender, #B0ADC0);
  opacity: 0.6;
}

/* ── Body content ── */

.privacy__body h2 {
  font-family: var(--sc-font-primary, 'Jost', sans-serif);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-cream, #FAF9F5);
  margin: 2.5rem 0 0.8rem;
}

.privacy__body h3 {
  font-family: var(--sc-font-primary, 'Jost', sans-serif);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--sc-lavender, #B0ADC0);
  margin: 1.5rem 0 0.6rem;
}

.privacy__body p {
  font-family: var(--sc-font-primary, 'Jost', sans-serif);
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--sc-lavender, #B0ADC0);
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.privacy__body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.privacy__body li {
  font-family: var(--sc-font-primary, 'Jost', sans-serif);
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--sc-lavender, #B0ADC0);
  opacity: 0.8;
  padding-left: 1rem;
  margin-bottom: 0.3rem;
  position: relative;
}

.privacy__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 1px;
  background: var(--sc-gold, #CAAA63);
  opacity: 0.6;
}

.privacy__body strong {
  font-weight: 400;
  color: var(--sc-cream, #FAF9F5);
}

.privacy__body em {
  font-style: italic;
  opacity: 0.6;
}

.privacy__body a {
  color: var(--sc-cream, #FAF9F5);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 300ms ease;
}

.privacy__body a:hover {
  opacity: 1;
}

/* ── Footer override for scrollable page ── */

.footer {
  position: relative;
  margin-top: 4rem;
}
