/* =========================================
   WDVS HERO
========================================= */

.wdvs-hero {
  min-height: 90vh;
  padding: 170px 0 90px;
  align-items: center;
}

.wdvs-hero .hero-bg img {
  object-position: center 42%;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.04);
}

.wdvs-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(15, 17, 20, .88),
      rgba(15, 17, 20, .52),
      rgba(15, 17, 20, .22)
    ),
    linear-gradient(
      0deg,
      rgba(15, 17, 20, .86),
      transparent 48%
    );
}

.wdvs-hero .hero-content {
  max-width: 900px;
  padding-top: 42px;
}

/* =========================================
   WDVS INTRO
========================================= */

.wdvs-intro-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items: stretch;
}

.wdvs-intro-card {
  padding: 44px;
}

.wdvs-intro-card p {
  margin-top: 18px;
}

.wdvs-highlight-card {
  min-height: 360px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(217, 119, 6, .35);
  background:
    radial-gradient(circle at top right, rgba(255, 184, 77, .25), transparent 44%),
    linear-gradient(135deg, rgba(217, 119, 6, .18), rgba(255, 255, 255, .055));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wdvs-highlight-card strong {
  display: block;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: .9;
  color: var(--accent2);
  letter-spacing: -.08em;
}

.wdvs-highlight-card span {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-weight: 900;
  font-size: 1.25rem;
}

.wdvs-highlight-card p {
  margin-top: 14px;
}

/* =========================================
   LAYERS
========================================= */

.layers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.layer-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  transition: .25s ease;
}

.layer-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .085);
  border-color: rgba(217, 119, 6, .36);
}

.layer-card strong {
  display: block;
  color: var(--accent2);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.layer-card h3 {
  margin-bottom: 10px;
}

/* =========================================
   WDVS GALLERY
========================================= */

.wdvs-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-large,
.gallery-small,
.gallery-wide {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #222;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-large img,
.gallery-small img,
.gallery-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s ease;
}

.gallery-large:hover img,
.gallery-small:hover img,
.gallery-wide:hover img {
  transform: scale(1.05);
}

.gallery-large::after,
.gallery-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 17, 20, .9), rgba(15, 17, 20, .14));
}

.wdvs-gallery .caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(15, 17, 20, .68);
  backdrop-filter: blur(16px);
}

.wdvs-gallery .caption h3 {
  margin-top: 10px;
  margin-bottom: 8px;
}

/* =========================================
   WARNING BOX
========================================= */

.warning-box {
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 184, 77, .18), transparent 40%),
    linear-gradient(135deg, rgba(217, 119, 6, .16), rgba(255, 255, 255, .055));
  border: 1px solid rgba(217, 119, 6, .28);
  box-shadow: var(--shadow);
}

.warning-box p {
  margin-top: 18px;
}

/* =========================================
   PROCESS
========================================= */

.process-section {
  position: relative;
}

.process-line {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  transition: .25s ease;
}

.process-step:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, .085);
  border-color: rgba(217, 119, 6, .32);
}

.process-step span {
  color: var(--accent2);
  font-weight: 900;
  font-size: 1.25rem;
}

.process-step h3 {
  margin-bottom: 8px;
}

/* =========================================
   FINAL GALLERY
========================================= */

.wdvs-final-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.wdvs-final-gallery .image-card {
  min-height: 430px;
}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 1050px) {
  .layers {
    grid-template-columns: repeat(2, 1fr);
  }

  .wdvs-intro-grid,
  .wdvs-final-gallery {
    grid-template-columns: 1fr;
  }

  .wdvs-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }
}

/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 620px) {
  .wdvs-hero {
    min-height: 84vh;
    padding: 135px 0 70px;
  }

  .wdvs-hero .hero-bg img {
    object-position: center 45%;
  }

  .wdvs-intro-card,
  .warning-box {
    padding: 24px;
  }

  .wdvs-highlight-card {
    min-height: 270px;
    padding: 24px;
  }

  .layers {
    grid-template-columns: 1fr;
  }

  .layer-card {
    padding: 22px;
  }

  .process-step {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .process-step:hover {
    transform: translateY(-3px);
  }

  .wdvs-gallery {
    grid-auto-rows: 260px;
  }

  .wdvs-gallery .caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .wdvs-final-gallery .image-card {
    min-height: 340px;
  }
}