/* ==========================================================================
   Mirage Furniture — Shared section scaffolding
   Stacked full-width sections that scroll up over the pinned hero. Each section
   has its own stylesheet; the rules here are the shared base they build on.
   ========================================================================== */

/* Every section after the hero is opaque and sits a layer above it (z-index: 1),
   so it scrolls up over the pinned hero (and over the hero's nav). The quote
   and about sections set the same z-index in their own stylesheets. */
.section {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-7) var(--nav-pad-x);
  background: var(--color-bg);
}

/* Alternating warm background for visual rhythm. */
.section--alt {
  background: var(--color-bg-alt);
}

/* Faint placeholder label — removed once each section is built. */
.section__placeholder {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-sm);
  color: var(--color-pagination-inactive);
}
