.hero-scene {
  position: relative;
  isolation: isolate;
  padding: clamp(38px, 4vw, 70px) 0 clamp(85px, 7vw, 125px);
  background: var(--paper);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  padding: 28px 0 0;
}
.hero-scene .hero-grid {
  display: block;
  min-height: clamp(470px, 36vw, 670px);
}
.hero-scene .hero-copy {
  width: 53%;
  max-width: 740px;
  padding-bottom: 0;
}
.hero-scene h1 {
  font-size: clamp(2.8rem, 4.65vw, 5rem);
  line-height: 1.01;
  letter-spacing: -.055em;
}
.hero-scene .lead {
  max-width: 520px;
  text-wrap: pretty;
}
.hero-scene .hero-actions { gap: 17px 20px; }
.hero-scene .hero-services { z-index: 15; }
.hero-scene .scroll-hint {
  background: var(--paper);
  padding: 5px 12px;
  border-radius: 30px;
  bottom: 20px;
}
@media (min-width: 1600px) {
  .hero-scene .hero-copy { width: 54%; }
}
@media (max-width: 1100px) {
  .hero-scene {
    padding: 34px 0 calc(min(92.5vw, 550px) + 32px);
    background-color: var(--paper);
    background-image: var(--grain);
  }
  .hero-scene .hero-grid { min-height: 0; }
  .hero-scene .hero-copy { width: 100%; max-width: 650px; }
  .hero-scene h1 { font-size: clamp(2.3rem, 7.8vw, 4.3rem); }
  .hero-backdrop {
    top: auto;
    height: min(92.5vw, 550px);
    mask-image: linear-gradient(to bottom, transparent, #000 12%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%);
  }
  .hero-backdrop img {
    position: absolute;
    right: -4%;
    bottom: 0;
    width: 185%;
    height: auto;
    aspect-ratio: 2 / 1;
    max-width: 1100px;
    padding: 0;
    object-fit: contain;
    object-position: right bottom;
  }
  .hero-scene .hero-actions { gap: 18px; }
}
@media (max-width: 480px) {
  .hero-scene h1 { font-size: clamp(2rem, 9.5vw, 2.85rem); }
  .hero-scene .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scene .hero-services { width: 100%; }
}
