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

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

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

/* ─── OPENING STATEMENT ──────────────────────────────────────── */

.pu-statement {
  padding: 70px 0 80px;
  text-align: center;
  position: relative;
}

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

.pu-manifesto {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: #3a5160;
  line-height: 1.5;
  margin: 0;
}

/* ─── IMAGE SLOTS ────────────────────────────────────────────── */

.pu-image {
  padding: 0 0 80px;
}

.pu-placeholder {
  min-height: 480px;
  background: rgba(36, 55, 70, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pu-placeholder::after {
  content: 'Image coming soon';
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(36, 55, 70, 0.25);
}

/* ─── IN PRACTICE ────────────────────────────────────────────── */

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

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

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

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

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

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

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

.pu-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;
}

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

.pu-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;
}

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

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

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

  .pu-statement,
  .pu-section,
  .pu-cta {
    padding: 70px 0;
  }

  .pu-placeholder {
    min-height: 300px;
  }
}
