/* ════════════════════════════════
   PAGE — gallery.html
   ════════════════════════════════ */

/* ── PLACEHOLDER ── */
.placeholder {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(166, 130, 107, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ── FOUNDING DIVIDER ── */
.founding-divider {
  width: 40px;
  height: 1px;
  background: var(--terra-light);
  margin: 3rem auto 2rem;
  opacity: 0.5;
}
