/* ================================
   PRIVACY POLICY PAGE
================================ */

.privacy-page{
  background: var(--ss-paper, #F7F2EA);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

/* Header */
.privacy-hero{
  max-width: 52rem;
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
  text-align: left;
}

.privacy-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(20,25,30,0.6);
}

.privacy-title{
  margin: 0.5rem 0 0.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(20,25,30,0.94);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.privacy-sub{
  margin: 0;
  color: rgba(20,25,30,0.72);
  font-weight: 600;
  line-height: 1.55;
}

/* Main card */
.privacy-card{
  max-width: 52rem;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
}

.privacy-section + .privacy-section{
  margin-top: 1.35rem;
}

.privacy-section h2{
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(20,25,30,0.92);
}

.privacy-section p{
  margin: 0;
  color: rgba(20,25,30,0.72);
  font-weight: 600;
  line-height: 1.65;
}

.privacy-list{
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: rgba(20,25,30,0.72);
  font-weight: 600;
  line-height: 1.65;
}

.privacy-list li + li{
  margin-top: 0.35rem;
}

.privacy-divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 1.6rem 0 1.1rem;
}

/* Footer row */
.privacy-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(20,25,30,0.65);
  font-weight: 700;
  font-size: 0.92rem;
}

.privacy-back{
  text-decoration: none;
  font-weight: 800;
  color: rgba(20,25,30,0.86);
}

.privacy-back:hover{
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

/* Only offset the hero so it clears the nav */
.privacy-hero{
  margin-top: 3.25rem;
}


@media (max-width: 575.98px){
  .privacy-meta{
    flex-direction: column;
    align-items: flex-start;
  }
}
