/* ── Privacy Page ────────────────────────────────────────────────────────────── */
.privacy-hero {
  background: var(--black);
  padding: 56px 0 52px;
  border-bottom: 1px solid var(--line);
}
.privacy-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin: 10px 0 12px;
}
.privacy-title .accent { color: var(--gold); }
.privacy-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Layout a due colonne */
.privacy-body { padding: 56px 0 80px; background: var(--form-bg); }
.privacy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar TOC */
.privacy-toc {
  position: sticky;
  top: 84px;
}
.toc-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.toc-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0 6px 12px;
  border-left: 2px solid var(--border);
  margin-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
  line-height: 1.4;
}
.toc-link:hover {
  color: var(--text);
  border-color: var(--gold-dark);
}

/* Contenuto */
.privacy-content { min-width: 0; }

.privacy-intro-box {
  background: #fffbea;
  border-left: 3px solid var(--gold-dark);
  border-radius: 0 5px 5px 0;
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.privacy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-child { border-bottom: none; margin-bottom: 0; }

.privacy-h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-bottom: 16px;
  padding-top: 4px;
}
.privacy-h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 24px 0 8px;
}

.privacy-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 400;
}
.privacy-content p strong { color: var(--text); font-weight: 700; }
.privacy-content a { color: var(--gold-dark); font-weight: 600; text-decoration: none; }
.privacy-content a:hover { text-decoration: underline; }

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-list li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.privacy-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
}
.privacy-list li strong { color: var(--text); font-weight: 700; }

/* Grid contatti titolare */
.privacy-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}
.privacy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.privacy-contact-item:nth-child(odd)  { border-right: 1px solid var(--border); }
.privacy-contact-item:last-child,
.privacy-contact-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.pci-label { font-size: 10px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.pci-value { font-weight: 600; color: var(--text); }

/* Grid base giuridica */
.privacy-basis-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.pbg-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--form-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.pbg-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.pbg-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pbg-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Grid diritti */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 20px;
}
.prg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--form-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
}
.prg-icon { font-size: 16px; flex-shrink: 0; }

.privacy-alert {
  background: #fffbea;
  border-left: 3px solid var(--gold-dark);
  border-radius: 0 5px 5px 0;
  padding: 16px 20px;
  margin-top: 16px;
}
.privacy-alert strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.privacy-alert p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin: 0; }

.privacy-cookie-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--form-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 22px;
}
.privacy-cookie-cta strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.privacy-cookie-cta p { font-size: 13px; color: var(--text-muted); margin: 0; }
.privacy-cookie-cta .cb-btn { margin-left: auto; flex-shrink: 0; }

/* ── Privacy Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 0; }
  .privacy-toc { display: none; }
  .privacy-contact-grid { grid-template-columns: 1fr; }
  .privacy-contact-item:nth-child(odd) { border-right: none; }
  .privacy-rights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .privacy-hero { padding: 40px 0 36px; }
  .privacy-body { padding: 36px 0 56px; }
  .privacy-section { margin-bottom: 36px; padding-bottom: 36px; }
  .privacy-cookie-cta { flex-wrap: wrap; }
  .privacy-cookie-cta .cb-btn { margin-left: 0; width: 100%; justify-content: center; }
}
