/* ─── INTRO ──────────────────────────────────────────────────── */

.pd-intro {
  padding: 140px 0 60px;
}

.pd-subtitle {
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6a7d8a;
  margin: 0.4rem 0 0;
}

/* ─── HERO IMAGE ─────────────────────────────────────────────── */

.pd-hero-image {
  padding: 0 0 90px;
}

/* ─── TEXT SECTIONS ──────────────────────────────────────────── */

.pd-section {
  padding: 90px 0;
  position: relative;
}

.pd-section::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: rgba(36, 55, 70, 0.07);
}

.pd-text {
  max-width: 580px;
  margin: 2rem auto 0;
  text-align: center;
}

.pd-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #3a5160;
  margin: 0 0 1.2rem;
}

.pd-closing {
  color: #243746;
  font-weight: 500;
  border-top: 1px solid rgba(36, 55, 70, 0.08);
  padding-top: 1.6rem;
  margin-top: 0.4rem;
}

/* ─── IMAGE INTERLUDES ───────────────────────────────────────── */

.pd-interlude {
  padding: 0 0 60px;
}

/* ─── CTA ────────────────────────────────────────────────────── */

.pd-cta {
  padding: 90px 0 140px;
  text-align: center;
  position: relative;
}

.pd-cta::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: rgba(36, 55, 70, 0.07);
}

.pd-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #243746;
  line-height: 1.2;
  margin: 0 0 1.2rem;
}

.pd-cta-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: #6a7d8a;
  max-width: 460px;
  margin: 0 auto 2.6rem;
}

.pd-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid rgba(36, 55, 70, 0.5);
  border-radius: 999px;
  color: #243746;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pd-cta-button:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 720px) {
  .pd-intro {
    padding: 120px 0 50px;
  }

  .pd-section {
    padding: 70px 0;
  }

  .pd-cta {
    padding: 70px 0 100px;
  }
}
