/* ── PRIVACY POLICY PAGE STYLES ── */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 40vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.55; pointer-events: none;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1; letter-spacing: -1px;
  color: var(--dark); max-width: 600px;
  margin-bottom: 18px; padding-top: 16px;
  animation: fadeUp .6s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--sage-dk); }
.page-hero-sub {
  font-size: 0.95rem; color: var(--muted);
  max-width: 480px; font-weight: 300; line-height: 1.75;
  animation: fadeUp .6s .1s ease both;
}
.section-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-dk);
  font-weight: 500; margin-bottom: 12px;
}

/* ── POLICY SECTION ── */
.policy-section {
  padding: 64px 48px 96px;
  background: var(--sand);
}
.policy-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── TABLE OF CONTENTS ── */
.policy-toc {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 6px;
}
.toc-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.policy-toc a {
  font-size: 0.85rem; color: var(--muted);
  text-decoration: none; padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color .2s, border-color .2s;
  line-height: 1.4;
}
.policy-toc a:hover {
  color: var(--sage-dk);
  border-left-color: var(--sage-dk);
}

/* ── POLICY BODY ── */
.policy-body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: 0 4px 24px rgba(13,27,75,.06);
}
.policy-intro {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(197,213,245,0.5);
}
.policy-block {
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(197,213,245,0.4);
}
.policy-block:last-child {
  border-bottom: none; margin-bottom: 0; padding-bottom: 0;
}
.policy-block h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; color: var(--dark);
  margin-bottom: 16px; letter-spacing: -0.3px;
}
.policy-block h3 {
  font-size: 0.9rem; font-weight: 500;
  color: var(--dark); margin-bottom: 8px; margin-top: 18px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.policy-block p {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 12px;
}
.policy-block p:last-child { margin-bottom: 0; }
.policy-block ul {
  padding-left: 20px; margin: 12px 0;
}
.policy-block ul li {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 8px;
}
.policy-block a {
  color: var(--sage-dk); text-decoration: none;
}
.policy-block a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .policy-section { padding: 48px 28px 72px; }
  .policy-wrap { grid-template-columns: 1fr; gap: 0; }
  .policy-toc {
    position: static;
    flex-direction: row; flex-wrap: wrap;
    gap: 4px 0; margin-bottom: 28px;
    background: var(--white); border-radius: 12px;
    padding: 16px 20px;
  }
  .toc-label { width: 100%; margin-bottom: 8px; }
  .policy-toc a {
    border-left: none; padding-left: 0;
    padding-right: 14px; font-size: 0.8rem;
    border-bottom: 2px solid transparent;
  }
  .policy-toc a:hover { border-bottom-color: var(--sage-dk); }
  .policy-body { padding: 32px 24px; }
}
@media (max-width: 540px) {
  .policy-section { padding: 36px 16px 60px; }
  .policy-body { padding: 24px 18px; }
}
