/* ============================================
   IMAGE PLACEHOLDER SYSTEM
   Swap out for real photography — see IMAGE_GUIDE
   ============================================ */
.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white-warm);
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(59,58,54,0.08) 0%, transparent 45%);
}

.img-placeholder-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  font-family: var(--font-body);
}

.img-placeholder-label .ph-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  opacity: 0.9;
}

.img-placeholder-label .ph-ref {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(59, 58, 54, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.img-placeholder-label .ph-desc {
  font-size: 0.85rem;
  opacity: 0.95;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Variant tones so the site doesn't feel monotone */
.img-placeholder.tone-ocean {
  background: linear-gradient(135deg, var(--sand) 0%, var(--ocean) 100%);
}
.img-placeholder.tone-charcoal {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--charcoal) 100%);
}
