/* ============================================================
   PRIVACY POLICY PAGE — privacy.css
   ============================================================ */
.nav { opacity: 1; }

.privacy-main {
  padding: 10rem 4rem 8rem;
  max-width: 860px;
  margin: 0 auto;
}

.privacy-header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.5rem;
  color: var(--fg);
}

.privacy-date {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-body section h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.privacy-body section p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.privacy-body section ul {
  padding-left: 1.4rem;
  margin: 0.5rem 0 0.75rem;
}

.privacy-body section ul li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.3rem;
}

.privacy-body section a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--dark);
  color: #f7f5f2;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(247,245,242,0.7);
  line-height: 1.6;
  max-width: 680px;
}

.cookie-banner p a {
  color: rgba(247,245,242,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.6rem 1.6rem;
  background: #c0392b;
  color: #f5f2ee;
  border: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.cookie-accept:hover { background: #a93226; }

.cookie-decline {
  padding: 0.6rem 1.4rem;
  background: none;
  color: rgba(247,245,242,0.55);
  border: 1px solid rgba(247,245,242,0.2);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.cookie-decline:hover { border-color: rgba(247,245,242,0.5); color: rgba(247,245,242,0.8); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .privacy-main { padding: 8rem 1.4rem 5rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 1.4rem; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}
