/* ═══════════════════════════════════════════════
   DAARA — Privacy Policy Page Styles
   ═══════════════════════════════════════════════ */

.privacy-section {
  background: var(--cream);
  padding: 3rem 2rem 6rem;
}

.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ─── Date stamp ─── */
.privacy-date {
  font-size: 0.8rem;
  color: var(--slate);
  opacity: 0.65;
  margin-top: 0.8rem;
  font-style: italic;
}

/* ─── Plain language summary box ─── */
.privacy-summary {
  background: rgba(192,57,43,0.05);
  border-left: 3px solid var(--thread);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  margin-bottom: 3rem;
}

.privacy-summary-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--thread);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.privacy-summary-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-summary-list li {
  font-size: 0.93rem;
  color: var(--deep-slate);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}

.privacy-summary-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--deep-sage);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ─── Policy sections ─── */
.privacy-block {
  margin-bottom: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--sand);
}

.privacy-block:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.privacy-block h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.privacy-block h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-slate);
  letter-spacing: 0.03em;
  margin: 1.2rem 0 0.4rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.privacy-block p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.78;
  margin-bottom: 0.9rem;
}

.privacy-block p:last-child { margin-bottom: 0; }

.privacy-block ul {
  padding-left: 1.3rem;
  margin-bottom: 0.9rem;
}

.privacy-block li {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.privacy-block a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-block a:hover { color: var(--rust); }

/* ─── Never list ─── */
.privacy-nevers {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.privacy-never-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  background: white;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
}

.never-no {
  color: var(--rust);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.privacy-never-item p {
  font-size: 0.92rem;
  color: var(--deep-slate);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── Third party services table ─── */
.privacy-services {
  margin: 1rem 0;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
}

.privacy-service-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--sand);
  align-items: start;
}

.privacy-service-row:last-child { border-bottom: none; }
.privacy-service-row:nth-child(even) { background: var(--warm-white); }

.service-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--deep-slate);
  padding-top: 0.1rem;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.6;
}
.service-desc a { color: var(--terracotta); }

/* ─── Contact block ─── */
.privacy-contact {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 0.8rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.privacy-contact p {
  font-size: 0.92rem;
  margin-bottom: 0 !important;
}

/* ─── Back link ─── */
.privacy-back {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

/* ─── Responsive ─── */
@media (max-width: 680px) {
  .privacy-section { padding: 2.5rem 1.25rem 5rem; }
  .privacy-service-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .service-name { font-size: 0.8rem; }
}
