/* ═══ MANIFESTO PAGE ════════════════════════════════════════ */
.speech-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.speech-quote-mark { font-family: 'Playfair Display', serif; font-size: 7rem; line-height: .6; color: rgba(255,255,255,0.12); margin-bottom: -16px; }
.speech-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: rgba(255,255,255,0.9); line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.speech-text strong { color: var(--brown-pale); font-style: normal; }
.speech-attribution { display: flex; align-items: center; justify-content: center; gap: 12px; }
.speech-dash { font-size: 1.5rem; color: var(--brown-light); }
.speech-name { font-weight: 700; color: var(--white); }
.speech-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.pillars-container { display: flex; flex-direction: column; gap: 16px; }

.pillar-full {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow var(--transition);
}
.pillar-full:hover { box-shadow: var(--shadow-md); }

.pillar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; cursor: pointer; gap: 20px;
  transition: background var(--transition);
  user-select: none;
}
.pillar-header:hover { background: var(--brown-faint); }
.pillar-header-left { display: flex; align-items: flex-start; gap: 16px; flex: 1; }
.pillar-badge {
  display: inline-block; flex-shrink: 0;
  background: var(--brown); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 6px;
  white-space: nowrap;
}
.pillar-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.pillar-principle { font-size: 0.82rem; color: var(--text-light); font-style: italic; }
.pillar-arrow { font-size: 1.2rem; color: var(--brown-light); transition: transform .3s; flex-shrink: 0; }
.pillar-full.open .pillar-arrow { transform: rotate(180deg); }

.pillar-body-wrap {
  max-height: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(0.4,0,0.2,1), padding .3s;
  padding: 0 28px;
}
.pillar-full.open .pillar-body-wrap { max-height: 800px; padding: 0 28px 28px; }

.pillar-img-row { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.pillar-img-row img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 700px) { .pillar-img-row { grid-template-columns: 1fr; } .pillar-img-row img { height: 160px; } }

.pillar-body-text > p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.pillar-commitments { display: flex; flex-direction: column; gap: 8px; }
.pillar-commitments li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.65;
  padding: 8px 12px; background: var(--off-white); border-radius: 8px;
  border-left: 3px solid var(--brown-light);
}
.pillar-commitments li::before { content: '✓'; color: var(--brown); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
