/* ============================================================
   Privacy Policy page
   Shared pieces (.page-hero, .jump-nav, .btn, .eyebrow, .container)
   come from style.css.

   The two column group layout mirrors faq.css on purpose: sticky
   numbered heading on the left rail, prose on the right. A legal page
   is long, so the sticky rail is what tells you where you are.
   ============================================================ */

.pp-body { background: var(--white); }

/* ============================================================
   Summary block ("The Short Version")
   Front loads the answers most people actually came for, so nobody
   has to read six sections to learn we do not sell their data.
   ============================================================ */
.pp-intro-section {
  padding: 64px 0 8px;
  background: var(--white);
}

.pp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 34px;
}
.pp-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gray-600);
}
.pp-meta-item i { color: var(--accent); font-size: .82rem; }

.pp-summary {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 40px 44px;
}
.pp-summary h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 22px;
}
.pp-summary-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.pp-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
}
.pp-summary-list i {
  flex-shrink: 0;
  margin-top: .3em;
  font-size: .85rem;
  color: var(--accent);
}
/* The "we do NOT do this" lines read as reassurance, not as failures,
   so they get a neutral slate mark rather than an alarming red one. */
.pp-summary-list i.pp-no { color: var(--gray-400); }

.pp-summary-note {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* ============================================================
   Policy sections
   ============================================================ */
.pp-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--gray-200);
}
.pp-section:last-child { border-bottom: none; }
.pp-section--alt { background: var(--off-white); }

.pp-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

/* Left rail. --nav-h and --jump-h are measured by main.js, so this
   stays correct if the header or the sticky jump bar changes height. */
.pp-head { position: sticky; top: calc(var(--nav-h) + var(--jump-h) + 28px); }
.pp-num {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 12px;
}
.pp-head h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 14px;
}
.pp-head p {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   Prose column
   Legal copy gets a slightly looser line height and a capped measure,
   because this is the one page on the site people read start to finish.
   ============================================================ */
.pp-content { max-width: 70ch; }

.pp-content h3 {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--navy);
  margin: 38px 0 12px;
  line-height: 1.4;
}
.pp-content h3:first-child { margin-top: 0; }

.pp-content p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.pp-content p:last-child { margin-bottom: 0; }

.pp-content a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.pp-content a:hover { color: var(--accent); }

/* ============================================================
   Lists
   ============================================================ */
.pp-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.pp-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.pp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.pp-list li strong { color: var(--navy); font-weight: 700; }
.pp-list--tight { gap: 11px; }
.pp-list:last-child { margin-bottom: 0; }

/* ============================================================
   Callouts
   For the two claims worth pulling out of the flow: what we never do,
   and what giving us a phone number actually means.
   ============================================================ */
.pp-callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}
.pp-section--alt .pp-callout { background: var(--white); }
.pp-callout > i {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--accent);
  margin-top: .15em;
}
.pp-callout strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.pp-callout p {
  font-size: .94rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}
.pp-callout--accent {
  background: var(--navy);
  border-color: var(--navy);
}
.pp-section--alt .pp-callout--accent { background: var(--navy); }
.pp-callout--accent > i { color: var(--accent-light); }
.pp-callout--accent strong { color: var(--white); }
.pp-callout--accent p { color: rgba(255,255,255,.72); }

/* ============================================================
   Contact block
   ============================================================ */
.pp-contact-section { padding: 76px 0; }

.pp-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pp-contact-text h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 16px;
}
.pp-contact-text p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--gray-600);
  margin: 0;
  max-width: 46ch;
}

.pp-contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
  padding: 34px 36px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}
.pp-contact-label {
  display: block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.pp-contact-item p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0;
}
.pp-contact-item a {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--ease);
}
.pp-contact-item a:hover { color: var(--accent); }
.pp-muted { color: var(--gray-400); font-size: .82rem; font-weight: 400; }

/* The button spans both columns so it anchors the card. */
.pp-contact-details .btn { grid-column: 1 / -1; justify-self: start; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .pp-layout { grid-template-columns: 1fr; gap: 28px; }
  .pp-head { position: static; }
  .pp-content { max-width: none; }
  .pp-contact { grid-template-columns: 1fr; gap: 36px; }
  .pp-contact-text p { max-width: none; }
}

@media (max-width: 768px) {
  .pp-section, .pp-contact-section { padding: 52px 0; }
  .pp-intro-section { padding: 44px 0 4px; }
  .pp-summary { padding: 28px 24px; }
  .pp-summary-list li { font-size: .95rem; }
  .pp-content h3 { margin-top: 30px; }
  .pp-contact-details { grid-template-columns: 1fr; padding: 26px 24px; }
  .pp-callout { flex-direction: column; gap: 12px; padding: 22px; }
}
