/* ── HERO VISUAL — pink/assistant gradient ── */
.cs-hero-visual {
  height: 460px;
  background: linear-gradient(145deg, #1c1510 0%, #2a1c2e 50%, #c9637a 100%);
}

/* ── 3-COLUMN IMAGE GRID ── */
.cs-img-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 40px 0; }
.cs-img-3col .cs-img-placeholder { aspect-ratio: 3/4; }

/* ── REFLECTION BLOCK ── */
.cs-reflection {
  padding: 28px 36px; border-left: 3px solid var(--pink);
  background: rgba(201,99,122,0.04); border-radius: 0 14px 14px 0; margin: 40px 0;
}
.cs-reflection-label {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 10px; display: block;
}
.cs-reflection p { font-size: 15px; color: var(--ink); line-height: 1.75; font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cs-img-3col { grid-template-columns: 1fr; }
}
