.parallax-hero {
  position: relative;
  padding: 20px 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.cinematic-grid .panel {
  grid-column: span 6;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.cinematic-grid .panel.full {
  grid-column: 1 / -1;
}

.cinematic-grid .panel img {
  width: 100%;
  height: auto;
  display: block;
}