/* ============================================================================
   INSTALL PROCESS — three photo tiles, one real install (v3, 2026-08-30).
   v1 (tall alternating rows) and v2 (plain white cards) both read as filler
   against this site's photo-forward sections; the fix is to let the
   photography BE the section: three equal portrait tiles from the Pronghorn
   install, step text overlaid on a bottom gradient, same treatment as the
   services cards' colored panels. Own file: the homepage skips pages.css.
   ============================================================================ */
.process-grid3 {
  display: grid; gap: 16px;
  margin-top: clamp(26px, 4vw, 40px);
}

@media (min-width: 760px) {
  .process-grid3 { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}

.process-tile {
  position: relative;
  border-radius: var(--r-xl, 18px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg, 0 18px 40px -12px rgba(10,26,46,0.35));
}

@media (max-width: 759px) {
  .process-tile { aspect-ratio: 16 / 10; }
}

.process-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-tile:hover img { transform: scale(1.04); }

.process-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,26,0.86) 0%, rgba(6,14,26,0.38) 34%, rgba(6,14,26,0) 60%);
  pointer-events: none;
}

.process-tile-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 18px 20px 18px;
  color: white;
}

.process-tile-copy .step {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold, #f3b21d);
}

.process-tile-copy h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700; letter-spacing: -0.015em;
  color: white;
  margin: 5px 0 4px;
  text-wrap: balance;
}

.process-tile-copy p {
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .process-tile img { transition: none; }
  .process-tile:hover img { transform: none; }
}
