.landing {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: url('images/workshops/title.jpg') center / cover no-repeat;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.landing--exit {
  opacity: 0;
}

.landing-disclaimer {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Merriweather", serif;
  font-size: 0.8rem;
  font-weight: normal;
  color: #C695BA;
  text-align: center;
  line-height: 1.7;
  margin: 0;
  white-space: nowrap;
}

.landing-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.landing-lang {
  position: relative;
  font-family: "Vinnytsya", sans-serif;
  font-size: 1.1vw;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.landing-lang::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.2vw;
  height: 10px;
  background-image: url("images/dash-pink.svg");
  background-repeat: repeat-x;
  background-size: auto 10px;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.landing-lang:hover::after {
  opacity: 1;
}

.landing-sound {
  position: relative;
  background: none;
  border: none;
  font-family: "Vinnytsya", sans-serif;
  font-size: 1.1vw;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.landing-sound::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.2vw;
  height: 10px;
  background-image: url("images/dash-pink.svg");
  background-repeat: repeat-x;
  background-size: auto 10px;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.landing-sound:hover::after {
  opacity: 1;
}

.landing-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 7rem;
  height: 15px;
  background: url("images/Underline.svg") repeat-x center / auto 15px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}

.landing-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #6E2A5E;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #6E2A5E;
}

.landing-volume::-moz-range-thumb {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #6E2A5E;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #6E2A5E;
}

.landing-volume::-webkit-slider-runnable-track {
  background: transparent;
}

.landing-volume::-moz-range-track {
  background: transparent;
  height: 15px;
}

.gallery-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 6rem;
  height: 15px;
  background: url("images/Underline.svg") repeat-x center / auto 15px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}

.gallery-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #6E2A5E;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #6E2A5E;
}

.gallery-volume::-moz-range-thumb {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #6E2A5E;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #6E2A5E;
}

.gallery-volume::-webkit-slider-runnable-track,
.gallery-volume::-moz-range-track {
  background: transparent;
}

.landing-start {
  position: relative;
  background: none;
  border: none;
  font-family: "Vinnytsya", sans-serif;
  font-size: 1.1vw;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.landing-start::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.2vw;
  height: 10px;
  background-image: url("images/dash-pink.svg");
  background-repeat: repeat-x;
  background-size: auto 10px;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.landing-start:hover::after {
  opacity: 1;
}

/* ── Gallery sound toggle ─────────────────────────────── */
.gallery-sound {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  position: relative;
}

.gallery-sound.sound--off::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  top: 50%;
  transform: translateY(-50%) scaleX(1);
  height: 10px;
  background-image: url("images/dash.svg");
  background-repeat: repeat-x;
  background-size: auto 10px;
  background-position: center;
  opacity: 1;
}

@media (max-width: 1024px) {
  .landing-disclaimer {
    display: none;
  }

  .landing-controls {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    bottom: 4rem;
  }

  .landing-lang,
  .landing-sound,
  .landing-start {
    font-size: 5vw;
  }

  .landing-lang::after,
  .landing-sound::after,
  .landing-start::after {
    bottom: -10px;
  }

  .landing-volume {
    display: none;
  }

  .landing-volume::-webkit-slider-thumb {
    width: 1.4rem;
    height: 1.4rem;
  }

  .landing-volume::-moz-range-thumb {
    width: 1.4rem;
    height: 1.4rem;
  }
}

@media (max-width: 768px) {
  .landing-lang,
  .landing-sound,
  .landing-start {
    font-size: 5vw;
  }
}
