.landing-section {
  overflow: hidden;
}

.landing-case-list {
  display: grid;
  gap: 66px;
}

.landing-case {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.landing-case__header {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.landing-case__header p {
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-case__header h3 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.landing-case__number {
  flex: 0 0 auto;
  color: var(--dim);
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-case__number b {
  margin-right: 5px;
  color: var(--text);
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.landing-case__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.landing-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #15120e;
  isolation: isolate;
}

.landing-shot--main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.landing-shot::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(
    112deg,
    transparent 18%,
    rgba(255, 255, 255, 0.13) 48%,
    transparent 78%
  );
  mix-blend-mode: screen;
  transform: translateX(-120%);
  transition:
    opacity 0.28s ease,
    transform 0.92s ease;
}

.landing-shot:hover::after {
  opacity: 0.7;
  transform: translateX(120%);
}

.landing-shot img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.landing-shot:hover img {
  transform: scale(1.035);
}

.landing-shot__placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(255, 207, 122, 0.16),
      transparent 25%
    ),
    linear-gradient(145deg, rgba(245, 166, 64, 0.22), transparent 52%), #14110d;
}

.landing-shot:nth-child(3n) .landing-shot__placeholder {
  background:
    radial-gradient(
      circle at 22% 14%,
      rgba(136, 216, 199, 0.17),
      transparent 24%
    ),
    linear-gradient(145deg, rgba(136, 216, 199, 0.16), transparent 54%), #0d1513;
}

.landing-shot:nth-child(4n) .landing-shot__placeholder {
  background:
    radial-gradient(
      circle at 76% 18%,
      rgba(213, 138, 104, 0.18),
      transparent 24%
    ),
    linear-gradient(145deg, rgba(213, 138, 104, 0.18), transparent 54%), #17100e;
}

.landing-shot__placeholder::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(145deg, #000, transparent 76%);
}

.landing-shot__placeholder::after {
  position: absolute;
  top: 18%;
  right: -12%;
  width: 76%;
  height: 24%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    -22px 74px 0 -1px rgba(255, 255, 255, 0.035),
    18px 148px 0 -1px rgba(255, 255, 255, 0.025);
  transform: rotate(-7deg);
}

.landing-shot__placeholder strong,
.landing-shot__placeholder small {
  position: relative;
  z-index: 1;
  display: block;
}

.landing-shot__placeholder strong {
  max-width: 11rem;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.1;
}

.landing-shot__placeholder small {
  color: var(--dim);
  font-size: 0.62rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.landing-shot--main .landing-shot__placeholder {
  padding: 22px;
}

.landing-shot--main .landing-shot__placeholder strong {
  font-size: 1.25rem;
}

.landing-shot--main .landing-shot__placeholder small {
  font-size: 0.74rem;
}

.landing-case__caption {
  max-width: 33rem;
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 0.84rem;
}

@media (min-width: 760px) {
  .landing-case-list {
    gap: 92px;
  }

  .landing-case {
    padding-top: 22px;
  }

  .landing-case__header {
    margin-bottom: 22px;
  }

  .landing-case__header h3 {
    font-size: 2.2rem;
  }

  .landing-case__number b {
    font-size: 2.75rem;
  }

  .landing-case__gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .landing-shot__placeholder {
    padding: 18px;
  }

  .landing-shot__placeholder strong {
    font-size: 1rem;
  }

  .landing-shot__placeholder small {
    font-size: 0.72rem;
  }

  .landing-shot--main .landing-shot__placeholder {
    padding: 30px;
  }

  .landing-shot--main .landing-shot__placeholder strong {
    font-size: 1.8rem;
  }

  .landing-shot--main .landing-shot__placeholder small {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-shot:hover img {
    transform: none;
  }
}
