/* ═══════════════════════════════════════════════
   DATA RETENTION & DELETION POLICY — data-retention.css
═══════════════════════════════════════════════ */

/* ─── HERO ─── */
.policy-hero {
  background: var(--forest);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,185,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
}

.policy-meta {
  font-size: 0.85rem;
  color: rgba(253,250,243,0.55);
  margin-top: 0.75rem;
}

/* ─── BODY ─── */
.policy-body {
  background: var(--cream);
  padding: 4rem 0 6rem;
}

/* ─── CONTENT ─── */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest-mid);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--forest); }

.doc-title-block {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(62,22,106,0.10);
}

.doc-company {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.doc-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.doc-effective {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-style: italic;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(62,22,106,0.08);
}

.policy-content h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--forest-mid);
  margin: 1.75rem 0 0.5rem;
}

.policy-content p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.contact-box {
  background: var(--cream-dark);
  border: 1px solid rgba(62,22,106,0.10);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.9;
}

.contact-box a {
  color: var(--forest-mid);
  font-weight: 500;
  text-decoration: underline;
}

.inline-link {
  color: var(--forest-mid);
  font-weight: 500;
  text-decoration: underline;
}

/* ─── RETENTION TABLE ─── */
.retention-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(62,22,106,0.10);
}

.retention-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.retention-table thead {
  background: var(--forest);
}

.retention-table th {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  padding: 1rem 1.25rem;
  text-align: left;
}

.retention-table td {
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.6;
  border-bottom: 1px solid rgba(62,22,106,0.06);
  vertical-align: top;
}

.retention-table tr:last-child td { border-bottom: none; }

.retention-table tr:nth-child(even) td {
  background: rgba(62,22,106,0.02);
}

.retention-period {
  font-weight: 600;
  color: var(--forest-mid);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .policy-hero { padding: 6rem 0 3rem; }
  .doc-title { font-size: 1.6rem; }
  .retention-table th,
  .retention-table td { padding: 0.75rem 0.9rem; }
}
