/* ==========================================================================
   EcomHolistic Privacy Policy Page
   Clean legal text page: centered column, generous spacing, quiet typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.eh-privacy-hero {
  padding: 140px 24px 48px;
  background-color: var(--eh-drip-cream);
  text-align: center;
}

.eh-privacy-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.eh-privacy-hero h1 {
  font-family: var(--eh-font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--eh-folk-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

/* Fade-in on load */
.eh-privacy-fade-in {
  animation: eh-privacy-fade 0.5s ease-out both;
}

@keyframes eh-privacy-fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eh-privacy-fade-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Content Body
   -------------------------------------------------------------------------- */
.eh-privacy-content {
  padding: 60px 24px 100px;
  background-color: var(--eh-drip-cream);
}

.eh-privacy-content-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Intro paragraphs */
.eh-privacy-intro {
  font-family: var(--eh-font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--eh-folk-dark);
  margin-bottom: 16px;
}

.eh-privacy-intro + .eh-privacy-intro {
  margin-bottom: 40px;
}

/* Section headings */
.eh-privacy-content h2 {
  font-family: var(--eh-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--eh-folk-dark);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Sub-headings (italic) */
.eh-privacy-subheading {
  font-family: var(--eh-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--eh-folk-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

/* Body paragraphs */
.eh-privacy-content p {
  font-family: var(--eh-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--eh-folk-mid);
  margin-bottom: 16px;
}

.eh-privacy-content p:last-child {
  margin-bottom: 0;
}

/* Bold text */
.eh-privacy-content strong {
  font-weight: 600;
  color: var(--eh-folk-dark);
}

/* Links */
.eh-privacy-content a {
  color: var(--eh-sage);
  text-decoration: none;
  transition: color 0.2s ease;
}

.eh-privacy-content a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Responsive: Tablet (768-1199px)
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .eh-privacy-hero {
    padding: 120px 24px 40px;
  }

  .eh-privacy-content {
    padding: 48px 24px 80px;
  }
}

/* --------------------------------------------------------------------------
   Responsive: Mobile (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .eh-privacy-hero {
    padding: 100px 20px 36px;
  }

  .eh-privacy-hero h1 {
    font-size: 30px;
  }

  .eh-privacy-content {
    padding: 40px 20px 64px;
  }

  .eh-privacy-content h2 {
    font-size: 19px;
    margin-top: 40px;
  }
}

/* --------------------------------------------------------------------------
   Responsive: Small Mobile (< 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 479px) {
  .eh-privacy-hero {
    padding: 100px 20px 32px;
  }

  .eh-privacy-hero h1 {
    font-size: 28px;
  }

  .eh-privacy-content {
    padding: 36px 20px 56px;
  }

  .eh-privacy-content h2 {
    font-size: 19px;
  }

  .eh-privacy-content p {
    font-size: 15px;
  }

  .eh-privacy-intro {
    font-size: 16px;
  }
}
