/* ══════════════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════════════ */

/* back button */
.hl-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
  border: 1px solid var(--dark-3);
  padding: 0.4em 1em;
  margin-bottom: 2rem;
  transition: color var(--transition), border-color var(--transition);
}
.hl-back-btn:hover { color: var(--white); border-color: var(--red); }

/* hero */
.privacy-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--dark-3);
  position: relative;
  overflow: hidden;
}
.privacy-hero::before {
  content: 'PRIVACY';
  position: absolute;
  right: -0.05em; top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 16vw, 200px);
  font-style: italic;
  color: rgba(204,0,0,0.04);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.privacy-hero-meta { position: relative; z-index: 2; }
.privacy-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.privacy-hero-sub {
  font-size: 13px;
  color: var(--light-mid);
  letter-spacing: 0.04em;
}

/* ── POLICY SECTION ── */
.privacy-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0 5rem;
  background: var(--black);
}
.privacy-container {
  max-width: 760px;
}

.privacy-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--light);
}
.privacy-body p { margin-bottom: 1.2rem; }
.privacy-body ul {
  margin: 0 0 1.2rem 1.3rem;
  padding: 0;
}
.privacy-body li { margin-bottom: 0.6rem; }
.privacy-body strong { color: var(--white); }
.privacy-body a {
  color: var(--light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.privacy-body a:hover { color: var(--red-light); }

.privacy-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--dark-3);
}
.privacy-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media (max-width: 600px) {
  .privacy-body { font-size: 14px; }
  .privacy-body h2 { font-size: 18px; }
}
