/* ============================================
   LUEN – Privacy Policy (MINIMAL)
   ============================================ */

/* === BASE === */
* {
  box-sizing: border-box;
}



/* === VARIABLES === */
:root {
  --plum: #391B26;
  --merlot: #7A3451;
  --lavender: #B39BA8;
  --cream: #FAF7F4;
  --white: #FFFFFF;
}

/* === LAYOUT === */
.privacy-page {
  padding: 8rem 1.5rem 5rem;
}

.privacy-page .container {
  max-width: 960px;
  margin: 0 auto;
}

/* === HEADER === */
.privacy-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.privacy-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--merlot);
  display: block;
  margin-bottom: .5rem;
}

.privacy-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 3rem;
  margin: 0 0 .75rem;
}

.privacy-date {
  font-size: .875rem;
  color: var(--lavender);
}

/* === CONTENT BOX === */
.privacy-content {
  background: var(--white);
  border: 1px solid #E6DADF;
  padding: 3.5rem;
}

.privacy-intro {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* === SECTIONS === */
.privacy-section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.25rem;
  margin-bottom: .75rem;
}


  .privacy-section p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}


/* === LIST === */
.privacy-list {
  margin-top: .75rem;
  padding-left: 1.25rem;
}

.privacy-list li {
  margin-bottom: .5rem;
  color: #555;
}

/* === LINKS === */
.privacy-link {
  color: var(--merlot);
  text-decoration: underline;
}

/* === DPO BOX === */
.dpo-box {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--color-cream);
  border-left: 4px solid var(--color-plum);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.dpo-title {
  font-family: 'Satoshi', sans-serif;
  margin-bottom: .5rem;
}

.dpo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-plum);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.dpo-email {
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid var(--plum);
}

.dpo-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 2rem;
  }

  .privacy-content {
    padding: 2rem 1.5rem;
  }
}
/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
