/* homepage has no extra sections — just the grid */

/* ─── Intro Overlay ──────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.intro-text {
  position: absolute;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-text-primary);
  opacity: 0;
  transition: opacity 0.7s ease;
  text-align: center;
  padding: 0 var(--gutter);
}
