/* ══════════════════════════════════════════════════
   PAGE INTRO (politic)
══════════════════════════════════════════════════ */
.page-intro {
  padding-top: calc(72px + clamp(52px, 7vw, 88px));
  padding-bottom: clamp(48px, 6vw, 80px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background: var(--bg-main);
  position: relative;
}
.page-intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--container);
  height: 1px;
  background: var(--border);
}
.page-intro-inner {
  max-width: 900px;
  margin-left: 0;
}
@media (min-width: 1260px) {
  .page-intro-inner {
    margin-left: calc((100vw - var(--container)) / 2);
  }
}
.page-intro .eyebrow {
  margin-bottom: 20px;
}
.page-intro-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 24px;
}
.page-intro-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ══════════════════════════════════════════════════
   POLICY SECTION
══════════════════════════════════════════════════ */
.policy-section {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: var(--section-py);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background: var(--bg-main);
}
.policy-body {
  max-width: 900px;
  margin-left: 0;
}
@media (min-width: 1260px) {
  .policy-body {
    margin-left: calc((100vw - var(--container)) / 2);
  }
}
.policy-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-main);
  margin-bottom: 18px;
}
.policy-body p:last-of-type {
  margin-bottom: 0;
}
.policy-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.3;
  margin-top: clamp(44px, 5vw, 64px);
  margin-bottom: 22px;
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--border);
}
.policy-body strong {
  font-weight: 600;
  color: var(--text-main);
}
.policy-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.policy-body ul li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-main);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.policy-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-bronze);
  font-size: 13px;
  line-height: 1.85;
}
.policy-link {
  color: var(--accent-bronze);
  border-bottom: 1px solid rgba(163,132,94,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.policy-link:hover {
  color: var(--text-main);
  border-color: rgba(52,46,41,0.3);
}
.policy-close {
  margin-top: clamp(52px, 6vw, 80px);
  height: 1px;
  background: var(--border);
}
@media (max-width: 640px) {
  .page-intro-inner { margin-left: 0; }
  .policy-body { margin-left: 0; }
  .policy-body p,
  .policy-body ul li { font-size: 14px; }
}
