/* =============================================
   PRIVACY POLICY PAGE
   Extends design tokens from style.css
============================================= */

/* === PAGE HEADER === */
.policy-header {
  padding: 160px 48px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--primary) 100%);
}

.policy-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.policy-header .section-label {
  justify-content: center;
}

.policy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.policy-header p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === POLICY BODY === */
.policy-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 48px 120px;
}

.policy-updated {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  margin-bottom: 32px;
}

.policy-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

/* Table of contents */
.policy-toc {
  list-style: none;
  margin: 0 0 56px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.policy-toc li a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.policy-toc li a:hover {
  color: var(--gold);
}

/* Sections */
.policy-section {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.policy-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.policy-section p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 4px 0 14px;
  padding-left: 4px;
}

.policy-section li {
  position: relative;
  list-style: none;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.policy-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.policy-section li:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.policy-section a:hover {
  color: var(--gold-light);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .policy-header {
    padding: 140px 32px 50px;
  }

  .policy-page {
    padding: 60px 32px 100px;
  }
}

@media (max-width: 768px) {
  .policy-toc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .policy-header {
    padding: 120px 24px 40px;
  }

  .policy-page {
    padding: 48px 24px 80px;
  }

  .policy-toc {
    padding: 22px 20px;
  }

  .policy-section h2 {
    font-size: 1.35rem;
  }
}