/* =========================================================
   Privacy Policy page — extends styles-v2.css
   Editorial long-form layout on paper
   ========================================================= */

.pp-shell {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1000px) {
  .pp-shell { grid-template-columns: 280px 1fr; gap: 80px; }
}
@media (min-width: 1400px) {
  .pp-shell { grid-template-columns: 320px 1fr; gap: 120px; }
}

.pp-header {
  max-width: 920px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.pp-header h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  letter-spacing: -0.025em;
  margin-top: 22px;
}
.pp-header h1 em { color: var(--gold-deep); font-style: italic; }
.pp-header .meta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.pp-header .meta span:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  opacity: 0.6;
}

/* TOC sidebar */
.pp-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  font-family: var(--f-body);
}
.pp-toc h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 400;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
}
.pp-toc ol {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
  counter-reset: pp-counter;
}
.pp-toc li {
  counter-increment: pp-counter;
}
.pp-toc a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted-light);
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  transition: color 200ms, transform 200ms var(--ease-pop);
}
.pp-toc li:last-child a { border-bottom: 0; }
.pp-toc a::before {
  content: counter(pp-counter, lower-roman) ".";
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 14px;
}
.pp-toc a:hover {
  color: var(--ink);
  transform: translateX(3px);
}
.pp-toc a.active {
  color: var(--ink);
  font-weight: 500;
}

/* Body content */
.pp-body {
  max-width: 760px;
}
.pp-section {
  padding-top: clamp(36px, 4vw, 56px);
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--line-light);
  scroll-margin-top: 110px;
}
.pp-section:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.pp-section h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  display: flex; align-items: baseline; gap: 18px;
}
.pp-section h2 .num {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.6em;
  flex-shrink: 0;
}
.pp-section h3 {
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin-top: 28px;
  margin-bottom: 12px;
}
.pp-section p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 64ch;
}
.pp-section p strong {
  font-weight: 500;
}
.pp-section p em {
  font-style: italic;
  color: var(--gold-deep);
}
.pp-section ul, .pp-section ol {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 64ch;
}
.pp-section ul li, .pp-section ol li {
  position: relative;
  padding-left: 26px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
}
.pp-section ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 1px;
  background: var(--gold-deep);
}
.pp-section ol {
  counter-reset: pp-li;
}
.pp-section ol li {
  counter-increment: pp-li;
  padding-left: 32px;
}
.pp-section ol li::before {
  content: counter(pp-li, lower-roman) ".";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.02rem;
}

.pp-section a {
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 180ms;
}
.pp-section a:hover { color: var(--ink); }

/* Pull-quote callout */
.pp-callout {
  margin: 32px 0;
  padding: 28px 30px;
  background: rgba(201,162,75,0.10);
  border-radius: var(--r-20);
  box-shadow: inset 0 0 0 1px rgba(201,162,75,0.22);
}
.pp-callout p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
}
.pp-callout .label {
  display: block;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

/* Definition table for the data we collect */
.pp-table {
  width: 100%;
  margin: 0 0 28px;
  border-top: 1px solid var(--line-light);
}
.pp-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}
@media (max-width: 700px) {
  .pp-row { grid-template-columns: 1fr; gap: 6px; }
}
.pp-row dt {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.pp-row dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted-light);
}

/* Mobile: hide sticky TOC, render inline at top */
@media (max-width: 1000px) {
  .pp-toc {
    position: static;
    margin-bottom: 32px;
  }
}

/* Contact box at the bottom */
.pp-contact {
  margin-top: clamp(48px, 5vw, 72px);
  padding: clamp(32px, 4vw, 48px);
  background: var(--stone);
  border-radius: var(--r-30);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.pp-contact .eyebrow { color: var(--muted-light); }
.pp-contact h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.pp-contact h3 em { color: var(--gold-deep); font-style: italic; }
.pp-contact p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 56ch;
}
.pp-contact ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted-light);
}
.pp-contact ul a { color: var(--ink); border-bottom: 1px solid var(--line-light); padding-bottom: 1px; }
.pp-contact ul a:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

/* "Back to top" inline link */
.pp-back-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 2px;
}
