/* ============================================================
   POLITIQUE DE CONFIDENTIALITÉ — page éditoriale light
   ============================================================ */

.pc-page {
  background: #fff;
  min-height: 100vh;
}

/* ── Hero ── */
.pc-hero {
  background: var(--light);
  padding: 100px 48px 72px;
  border-bottom: 1.5px solid var(--sand);
}
.pc-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pc-label {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--dark-sand);
  margin-bottom: 20px;
}
.pc-hero h1 {
  font-family: var(--font-logo);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  -webkit-text-stroke: 0.4px var(--dark);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.pc-hero-intro {
  font-size: 16px; font-weight: 400;
  color: rgba(29,29,29,.6);
  line-height: 1.7;
  max-width: 580px;
}
.pc-hero-date {
  margin-top: 28px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(29,29,29,.35);
}

/* ── Body ── */
.pc-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 48px 120px;
}

/* Sommaire rapide */
.pc-toc {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  margin-bottom: 64px;
}
.pc-toc-title {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--dark-sand);
  margin-bottom: 16px;
}
.pc-toc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.pc-toc-list li a {
  font-size: 13px; font-weight: 600;
  color: rgba(29,29,29,.7);
  text-decoration: none;
  transition: color .2s;
  display: flex; align-items: center; gap: 8px;
}
.pc-toc-list li a::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--sand);
  display: inline-block;
  flex-shrink: 0;
  transition: width .2s, background .2s;
}
.pc-toc-list li a:hover { color: var(--dark); }
.pc-toc-list li a:hover::before { width: 24px; background: var(--dark); }

/* Sections */
.pc-section {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(219,210,203,.6);
}
.pc-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.pc-section-num {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--dark-sand);
  display: block;
  margin-bottom: 10px;
}
.pc-section h2 {
  font-family: var(--font-logo);
  font-size: 22px; font-weight: 900;
  letter-spacing: -.5px;
  -webkit-text-stroke: 0.3px var(--dark);
  color: var(--dark);
  margin-bottom: 20px;
}
.pc-section p {
  font-size: 15px; font-weight: 400;
  color: rgba(29,29,29,.72);
  line-height: 1.75;
  margin-bottom: 14px;
}
.pc-section p:last-child { margin-bottom: 0; }

/* Blocs de données */
.pc-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.pc-data-card {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.pc-data-card-label {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--dark-sand);
  margin-bottom: 10px;
  display: block;
}
.pc-data-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
}
.pc-data-card ul li {
  font-size: 13px; font-weight: 500;
  color: rgba(29,29,29,.8);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.pc-data-card ul li::before {
  content: '·';
  color: var(--dark-sand);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Badge CNIL */
.pc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(140,223,200,.2);
  border: 1px solid rgba(140,223,200,.5);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px; font-weight: 700;
  color: rgba(29,29,29,.75);
  margin: 16px 0 4px;
}
.pc-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Tableau droits */
.pc-rights {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.pc-right-row {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--light);
  transition: background .2s;
}
.pc-right-row:hover { background: rgba(219,210,203,.4); }
.pc-right-name {
  font-size: 13px; font-weight: 800;
  color: var(--dark);
  min-width: 180px;
  flex-shrink: 0;
}
.pc-right-desc {
  font-size: 13px; font-weight: 400;
  color: rgba(29,29,29,.6);
  line-height: 1.55;
}

/* Contact card */
.pc-contact-card {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.pc-contact-card-text p:first-child {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.pc-contact-card-text p:last-child {
  font-size: 16px; font-weight: 500;
  color: white;
  line-height: 1.6;
}
.pc-contact-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: white;
  color: var(--dark);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, border-radius .9s ease-in-out;
}
.pc-contact-card-link:hover {
  background: var(--teal);
  border-radius: var(--radius-full);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pc-hero { padding: 80px 24px 48px; }
  .pc-body { padding: 48px 24px 80px; }

  .pc-data-grid { grid-template-columns: 1fr; }

  .pc-right-row { flex-direction: column; gap: 4px; }
  .pc-right-name { min-width: unset; }

  .pc-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .pc-contact-card-link { width: 100%; justify-content: center; }

  .pc-toc { padding: 22px 20px; }
}
