/* ==========================================================================
   PRIVACY POLICY — page styles
   Layers on top of /css/style.css (do not duplicate shared rules)
   ========================================================================== */

/* ---------- compact page hero ---------- */

.page-hero {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 200px 0 84px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-hero-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 22px;
}

/* ---------- policy body ---------- */

.policy-section { background: var(--ink); }

.policy-body {
  max-width: 70ch;
  color: var(--steel);
}

.policy-body p { margin-bottom: 22px; }

.policy-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin: 54px 0 20px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  position: relative;
}

.policy-body h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--teal);
}

.policy-body ul {
  list-style: none;
  margin: 0 0 22px;
}

.policy-body ul li {
  position: relative;
  padding: 0 0 14px 26px;
}

.policy-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--teal);
}

.policy-body strong { color: var(--white); font-weight: 500; }

.policy-body a {
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.policy-body a:hover { color: var(--white); border-color: var(--white); }

/* ---------- plain quote CTA band (no video) ---------- */

.quote-plain { background: var(--charcoal); }
.quote-plain .quote-overlay { display: none; }

/* ---------- responsive ---------- */

@media (max-width: 820px) {
  .page-hero { padding: 160px 0 64px; }
}
